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

    Interface StorageDescription

    One typed storage key.

    interface StorageDescription {
        key: string;
        legacyKeys: readonly string[];
        migratesFrom: readonly number[];
        moduleId: string;
        scope: "global" | "workspace";
        syncable: boolean;
        ttlMs: number | undefined;
        validated: boolean;
        version: number;
    }
    Index
    key: string
    legacyKeys: readonly string[]
    migratesFrom: readonly number[]

    Versions a migration step is registered for, ascending.

    moduleId: string
    scope: "global" | "workspace"
    syncable: boolean

    Whether the key participates in Settings Sync.

    ttlMs: number | undefined
    validated: boolean

    Whether a schema validates what is read and written.

    version: number

    The schema version values are written at.