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

    Interface DefineSecretOptions<T>

    Options for defineSecret.

    interface DefineSecretOptions<T> {
        key: string;
        schema?: StandardSchemaV1<unknown, T>;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index
    key: string

    Secret key the value lives under.

    schema?: StandardSchemaV1<unknown, T>

    Validates the deserialized value. Present: values are JSON with this schema's output type. Absent: values are plain strings.