| 53 | * ``` |
| 54 | */ |
| 55 | export interface jsonSchemaValidator { |
| 56 | /** |
| 57 | * Create a validator for the given JSON Schema |
| 58 | * |
| 59 | * @param schema - Standard JSON Schema object |
| 60 | * @returns A validator function that can be called multiple times |
| 61 | */ |
| 62 | getValidator<T>(schema: JsonSchemaType): JsonSchemaValidator<T>; |
| 63 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…