Interface LocalContextObject

interface LocalContextObject {
    connection: WebSocket;
    errorMessage: string;
    reject: (reason?: any) => void;
}

Properties

connection: WebSocket
errorMessage: string
reject: (reason?: any) => void