Files

8 lines
296 B
TypeScript
Raw Permalink Normal View History

2026-03-22 18:07:19 +00:00
import type { FuncKeywordDefinition } from "ajv";
declare type Constructor = new (...args: any[]) => any;
declare const CONSTRUCTORS: Record<string, Constructor | undefined>;
declare const getDef: (() => FuncKeywordDefinition) & {
CONSTRUCTORS: typeof CONSTRUCTORS;
};
export default getDef;