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

    Interface QuickPickItemLike

    The structural subset of vscode.QuickPickItem the framework needs. The vscode-specific fields (iconPath, resourceUri, kind) are carried as opaque values: the engine never interprets them, it only hands them to the platform.

    interface QuickPickItemLike {
        alwaysShow?: boolean;
        buttons?: readonly QuickInputButtonLike[];
        description?: string;
        detail?: string;
        iconPath?: unknown;
        kind?: number;
        label: string;
        picked?: boolean;
        resourceUri?: unknown;
    }

    Hierarchy (View Summary)

    Index
    alwaysShow?: boolean
    buttons?: readonly QuickInputButtonLike[]
    description?: string
    detail?: string
    iconPath?: unknown
    kind?: number

    vscode.QuickPickItemKind value; -1 renders a separator.

    label: string
    picked?: boolean
    resourceUri?: unknown