Interface IEditorError

    interface IEditorError {
        column?: number;
        description: string;
        row?: number;
        title: string;
        type: "error" | "info" | "warning";
    }

    Properties

    column?: number
    description: string
    row?: number
    title: string
    type: "error" | "info" | "warning"

    Generated using TypeDoc and TypeDoc Airthium Plugin