| 27 | |
| 28 | /** The result interface if validation succeeds. */ |
| 29 | export interface SuccessResult<Output> { |
| 30 | /** The typed output value. */ |
| 31 | readonly value: Output; |
| 32 | /** A falsy value for `issues` indicates success. */ |
| 33 | readonly issues?: undefined; |
| 34 | } |
| 35 | |
| 36 | export interface Options { |
| 37 | /** Explicit support for additional vendor-specific parameters, if needed. */ |
nothing calls this directly
no outgoing calls
no test coverage detected