mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-13 20:14:56 +02:00
8 lines
319 B
TypeScript
8 lines
319 B
TypeScript
import type { FuncKeywordDefinition } from "ajv";
|
|
export declare type DynamicDefaultFunc = (args?: Record<string, any>) => () => any;
|
|
declare const DEFAULTS: Record<string, DynamicDefaultFunc | undefined>;
|
|
declare const getDef: (() => FuncKeywordDefinition) & {
|
|
DEFAULTS: typeof DEFAULTS;
|
|
};
|
|
export default getDef;
|