Type Alias: ConfigSection<T>
ts
type ConfigSection<T> = object;Defined in: packages/core/src/schema.ts:35
Schema for nested sections
Type Parameters
| Type Parameter | Default type |
|---|---|
T | Record<string, unknown> |
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
description? | string | Human-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 |