Type Alias SubscribeRequestWithHandlers

SubscribeRequestWithHandlers: SubscribeRequest & {
    onClose?: (url: string) => void;
    onComplete?: () => void;
    onEose?: (url: string) => void;
    onEvent?: (event: TrustedEvent) => void;
}