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

    Interface QuickInputCapability

    The quick-input surface the framework needs.

    Disposing a visible quick input fires onDidHide — that reentry is why every consumer settles its promise before tearing down, and a fake must reproduce it or that whole class of bug becomes untestable.

    interface QuickInputCapability {
        backButton: QuickInputButtonLike;
        createInputBox(): InputBoxLike;
        createQuickPick<T extends QuickPickItemLike>(): QuickPickLike<T>;
    }

    Hierarchy (View Summary)

    Index

    The platform's Back button sentinel. Steps compare against it by identity.