Libraries
    Preparing search index...

    Type Alias EnvField<T>

    A branded wrapper around a schema builder that associates it with an environment variable name. Created exclusively by the env function.

    type EnvField<T extends SchemaBuilder<any, any, any, any, any>> = {
        "[ENV_FIELD_BRAND]": true;
        schema: T;
        varName: string;
    }

    Type Parameters

    • T extends SchemaBuilder<any, any, any, any, any>
    Index

    Properties

    "[ENV_FIELD_BRAND]": true
    schema: T
    varName: string