@karmaniverous/smoz
    Preparing search index...

    Interface GlobalParamsNode<GlobalParamsSchema>

    Concrete global configuration for authoring (params + env exposure).

    The App keeps this typed and uses it to generate provider.environment.

    interface GlobalParamsNode<GlobalParamsSchema extends ZodObject<ZodRawShape>> {
        envKeys: readonly (keyof output<GlobalParamsSchema>)[];
        params: output<GlobalParamsSchema>;
    }

    Type Parameters

    • GlobalParamsSchema extends ZodObject<ZodRawShape>

      Global params schema

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    envKeys: readonly (keyof output<GlobalParamsSchema>)[]
    params: output<GlobalParamsSchema>