@karmaniverous/smoz
    Preparing search index...

    Interface StageParamsNode<StageParamsSchema>

    Concrete per‑stage configuration for authoring (params + env exposure).

    The App composes stage with global (global.partial().extend(stage)).

    interface StageParamsNode<StageParamsSchema extends ZodObject<ZodRawShape>> {
        envKeys: readonly (keyof output<StageParamsSchema>)[];
        params: Record<string, z.infer<StageParamsSchema>>;
    }

    Type Parameters

    • StageParamsSchema extends ZodObject<ZodRawShape>

      Per‑stage params schema

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    envKeys: readonly (keyof output<StageParamsSchema>)[]
    params: Record<string, z.infer<StageParamsSchema>>