Interface ErrorEventInit

    interface ErrorEventInit {
        bubbles?: boolean;
        cancelable?: boolean;
        colno?: number;
        composed?: boolean;
        error?: any;
        filename?: string;
        lineno?: number;
        message?: string;
    }
    Hierarchy

    Properties

    bubbles?: boolean
    cancelable?: boolean
    colno?: number
    composed?: boolean
    error?: any
    filename?: string
    lineno?: number
    message?: string