interface WsOps {
    close?: (() => void);
    error?: ((e: any) => void);
    handler: ((e: any) => void);
    open?: (() => void);
    url: string;
}

Properties

close?: (() => void)
error?: ((e: any) => void)
handler: ((e: any) => void)
open?: (() => void)
url: string