Documentation - v7.8.0
    Preparing search index...

    Type Alias InferredConfig<S>

    InferredConfig: { [K in RequiredConfigKeys<S>]: InferOutput<S[K]> } & {
        [K in OptionalConfigKeys<S>]?: InferOutput<S[K]>
    }

    Infers the validated configuration output type for a given ConfigurationSchema — the return type of validateAndBuildConfiguration for that schema.

    Fields that are required or have a default are always present; other fields are optional keys, so consumers building a configuration object literal by hand (e.g. test fixtures) can omit them instead of having to write field: undefined explicitly.

    Type Parameters