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

    Interface RememberedChoice

    Where a "yes, and stop asking" answer is kept.

    Shaped so a TypedStorage<boolean> from defineStorage satisfies it directly: the acknowledgement is persisted state, and it belongs in the same declaration as everything else the extension stores.

    interface RememberedChoice {
        get(): boolean | undefined;
        set(value: boolean): void | Promise<void>;
    }
    Index
    • Records the affirmative acknowledgement; async persistence is awaited.

      Parameters

      • value: boolean

      Returns void | Promise<void>