@squidcloud/client
    Preparing search index...

    Interface SecretEntry<T>

    A secret entry combining metadata with a typed value.

    interface SecretEntry<T extends SecretValue = SecretValue> {
        key: string;
        lastUpdated: number;
        value: T;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    key: string

    The key identifying the secret.

    lastUpdated: number

    The timestamp (in milliseconds) when the secret was last updated.

    value: T

    The value of the secret, constrained to the specified type.