updating-secrets - v0.3.1
    Preparing search index...

    Type Alias SecretValues<Secrets>

    SecretValues: {
        [SecretName in keyof Secrets]: "shape" extends keyof Secrets[SecretName]
            ? ShapeDefinition<Secrets[SecretName]["shape"], true>["runtimeType"]
            : string
    }

    Maps a set of SecretDefinitions to the runtime values for those secrets.

    Type Parameters