interface IEditorAction {
    type: string;
    value:
        | undefined
        | string
        | boolean
        | IEditorCursor
        | IEditorHighlight
        | IEditorError;
}

Properties

Properties

type: string
value:
    | undefined
    | string
    | boolean
    | IEditorCursor
    | IEditorHighlight
    | IEditorError