| 2 | |
| 3 | /** The Standard Schema interface. */ |
| 4 | export interface StandardSchemaV1<Input = unknown, Output = Input> { |
| 5 | /** The Standard Schema properties. */ |
| 6 | readonly '~standard': StandardSchemaV1.Props<Input, Output>; |
| 7 | } |
| 8 | |
| 9 | export declare namespace StandardSchemaV1 { |
| 10 | /** The Standard Schema properties interface. */ |
nothing calls this directly
no outgoing calls
no test coverage detected