| 40 | |
| 41 | /** The result interface if validation fails. */ |
| 42 | export interface FailureResult { |
| 43 | /** The issues of failed validation. */ |
| 44 | readonly issues: ReadonlyArray<Issue>; |
| 45 | } |
| 46 | |
| 47 | /** The issue interface of the failure output. */ |
| 48 | export interface Issue { |
nothing calls this directly
no outgoing calls
no test coverage detected