@karmaniverous/smoz
    Preparing search index...

    Interface DefineAppConfigInput<GlobalParamsSchema, StageParamsSchema>

    Authoring input for a complete, unified app configuration.

    Use with defineAppConfig.

    interface DefineAppConfigInput<
        GlobalParamsSchema extends ZodObject<ZodRawShape>,
        StageParamsSchema extends ZodObject<ZodRawShape>,
    > {
        global: GlobalParamsNode<GlobalParamsSchema>;
        serverless: {
            defaultHandlerFileExport: string;
            defaultHandlerFileName: string;
            httpContextEventMap: SecurityContextHttpEventMap;
        };
        stage: StageParamsNode<StageParamsSchema>;
    }

    Type Parameters

    • GlobalParamsSchema extends ZodObject<ZodRawShape>

      Global params schema

    • StageParamsSchema extends ZodObject<ZodRawShape>

      Per‑stage params schema

    Index

    Properties

    serverless: {
        defaultHandlerFileExport: string;
        defaultHandlerFileName: string;
        httpContextEventMap: SecurityContextHttpEventMap;
    }