Interface: TypeFunction()<T>
Defined in: packages/parser/src/types.ts:17
Defines how a string input is converted to the target type T.
Type Parameters
| Type Parameter | Default type | Description |
|---|---|---|
T | unknown | The target type. |
ts
TypeFunction(value): T;Defined in: packages/parser/src/types.ts:18
Defines how a string input is converted to the target type T.
Parameters
| Parameter | Type |
|---|---|
value | string |
Returns
T
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
display? | string | Optional display name for the type, useful in help output. If provided, this will be shown instead of the function name. | packages/parser/src/types.ts:23 |

