@karmaniverous/smoz
    Preparing search index...

    Interface EnvKeysNode<Schema>

    Bind a list of environment keys to a schema’s inferred key space.

    Used to express “these keys are allowed to be exposed from this schema”.

    interface EnvKeysNode<Schema extends ZodObject<ZodRawShape>> {
        envKeys: readonly (keyof output<Schema>)[];
    }

    Type Parameters

    • Schema extends ZodObject<ZodRawShape>

      Zod object schema

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    envKeys: readonly (keyof output<Schema>)[]