instanceof.d.ts 296 B

1234567
  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;