1 | import type { FuncKeywordDefinition } from "ajv";
|
2 | declare type Constructor = new (...args: any[]) => any;
|
3 | declare const CONSTRUCTORS: Record<string, Constructor | undefined>;
|
4 | declare const getDef: (() => FuncKeywordDefinition) & {
|
5 | CONSTRUCTORS: typeof CONSTRUCTORS;
|
6 | };
|
7 | export default getDef;
|
8 |
|
\ | No newline at end of file |