cloudflared
    Preparing search index...

    Interface TunnelEvents

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

    Properties

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