| 46 | |
| 47 | /** The issue interface of the failure output. */ |
| 48 | export interface Issue { |
| 49 | /** The error message of the issue. */ |
| 50 | readonly message: string; |
| 51 | /** The path of the issue, if any. */ |
| 52 | readonly path?: ReadonlyArray<PropertyKey | PathSegment> | undefined; |
| 53 | } |
| 54 | |
| 55 | /** The path segment interface of the issue. */ |
| 56 | export interface PathSegment { |
nothing calls this directly
no outgoing calls
no test coverage detected