Type Alias: ConfigItem<T>
ts
type ConfigItem<T> = object;Defined in: packages/config-bound/src/configBound.ts:34
Base schema type for individual config items
Type Parameters
| Type Parameter | Default type |
|---|---|
T | unknown |
Properties
| Property | Type | Defined in |
|---|---|---|
default? | T | packages/config-bound/src/configBound.ts:35 |
description? | string | packages/config-bound/src/configBound.ts:36 |
example? | T | packages/config-bound/src/configBound.ts:37 |
omitFromSchema? | boolean | packages/config-bound/src/configBound.ts:39 |
sensitive? | boolean | packages/config-bound/src/configBound.ts:38 |
validator? | z.ZodType<T> | packages/config-bound/src/configBound.ts:40 |