@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface CommandDescription

    One command handler.

    interface CommandDescription {
        category: string | undefined;
        dependencies: Readonly<Record<string, string>>;
        id: string;
        moduleId: string;
        textEditor: boolean;
        title: string | undefined;
        validated: boolean;
    }
    Index
    category: string | undefined
    dependencies: Readonly<Record<string, string>>
    id: string
    moduleId: string
    textEditor: boolean

    Whether it was declared with handleTextEditor.

    title: string | undefined
    validated: boolean

    Whether the contract carries a runtime argument validator.