interface ErrorEvent {
    error: {
        code?: string;
        event_id: string;
        message: string;
        param: string;
        type: string;
    };
    event_id: string;
    type: "error";
}

Hierarchy

  • BaseServerEvent
    • ErrorEvent

Properties

Properties

error: {
    code?: string;
    event_id: string;
    message: string;
    param: string;
    type: string;
}

Type declaration

  • Optional code?: string
  • event_id: string
  • message: string
  • param: string
  • type: string
event_id: string
type: "error"