Files
Botexercito/Frontend/angular-internal-chat/node_modules/ajv-keywords/dist/definitions/instanceof.d.ts
T

8 lines
296 B
TypeScript
Raw 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;