Skip to content

Type Alias: ConfigSection<T>

ts
type ConfigSection<T> = object;

Defined in: packages/core/src/schema.ts:35

Schema for nested sections

Type Parameters

Type ParameterDefault type
TRecord<string, unknown>

Properties

PropertyTypeDescriptionDefined in
description?stringHuman-readable section description used in generated docs and schema output.packages/core/src/schema.ts:37
properties{ [K in keyof T]: ConfigItem<T[K]> }Section properties keyed by configuration item name.packages/core/src/schema.ts:39