Interface TunnelEvents

interface TunnelEvents {
    connected: ((connection: Connection) => void);
    disconnected: ((connection: Connection) => void);
    error: ((error: Error) => void);
    exit: ((code: null | number, signal: null | Signals) => void);
    stderr: ((data: string) => void);
    stdout: ((data: string) => void);
    url: ((url: string) => void);
}

Properties

connected: ((connection: Connection) => void)
disconnected: ((connection: Connection) => void)
error: ((error: Error) => void)
exit: ((code: null | number, signal: null | Signals) => void)
stderr: ((data: string) => void)
stdout: ((data: string) => void)
url: ((url: string) => void)
""