Type Alias: ConfigSection<T>
ts
type ConfigSection<T> = object;Defined in: packages/config-bound/src/configBound.ts:46
Schema for nested sections
Type Parameters
| Type Parameter | Default type |
|---|---|
T | Record<string, unknown> |
Properties
| Property | Type | Defined in |
|---|---|---|
description? | string | packages/config-bound/src/configBound.ts:47 |
properties | { [K in keyof T]: ConfigItem<T[K]> } | packages/config-bound/src/configBound.ts:48 |