Interface: RawArgValue
Defined in: src/batteries/media/pipe.ts:96
A parsed-but-unvalidated arg value, before the verb's arg schema refines it.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
quoted | boolean | Whether the source token was a quoted string (drives json-arg parsing + name/index rules). | src/batteries/media/pipe.ts:100 |
span | SourceSpan | Source position of the value token. | src/batteries/media/pipe.ts:102 |
value | MediaArgValue | The lowered value. Quoted strings stay strings here; schema may JSON-parse json args. | src/batteries/media/pipe.ts:98 |