Interface IEditorAction

interface IEditorAction {
    alias: string;
    id: string;
    label: string;
    metadata: ICommandMetadata;
    isSupported(): boolean;
    run(args?: unknown): Promise<void>;
}

Properties§

§readonly alias: string
§readonly id: string
§readonly label: string
§readonly metadata: ICommandMetadata

Methods§

§

isSupported(): boolean

§

run(args?: unknown): Promise<void>