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

    Interface CommandLike

    A command to run, with the title a menu would show. A vscode.Command satisfies it.

    interface CommandLike {
        arguments?: readonly unknown[];
        command: string;
        title: string;
        tooltip?: string;
    }
    Index
    arguments?: readonly unknown[]
    command: string
    title: string
    tooltip?: string