Interface IErrorEvent

interface IErrorEvent {
    message: string;
    type: "ERROR";
    [key: string]: unknown;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: unknown

Properties

Properties

message: string
type: "ERROR"