(schema: string, typeName: string)
| 44 | // Helper |
| 45 | // --------------------------------------------------------------------------- |
| 46 | function validatorFor<T extends object>(schema: string, typeName: string) { |
| 47 | return createTypeScriptJsonValidator<T>(schema, typeName); |
| 48 | } |
| 49 | |
| 50 | // --------------------------------------------------------------------------- |
| 51 | // Tests |
no test coverage detected