aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/ajv/dist/standalone/instance.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/ajv/dist/standalone/instance.d.ts')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/ajv/dist/standalone/instance.d.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/ajv/dist/standalone/instance.d.ts b/sandbox/testAppNevena/Front/node_modules/ajv/dist/standalone/instance.d.ts
new file mode 100644
index 00000000..156ac322
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/ajv/dist/standalone/instance.d.ts
@@ -0,0 +1,12 @@
+import Ajv, { AnySchema, AnyValidateFunction, ErrorObject } from "../core";
+export default class AjvPack {
+ readonly ajv: Ajv;
+ errors?: ErrorObject[] | null;
+ constructor(ajv: Ajv);
+ validate(schemaKeyRef: AnySchema | string, data: unknown): boolean | Promise<unknown>;
+ compile<T = unknown>(schema: AnySchema, meta?: boolean): AnyValidateFunction<T>;
+ getSchema<T = unknown>(keyRef: string): AnyValidateFunction<T> | undefined;
+ private getStandalone;
+ addSchema(...args: Parameters<typeof Ajv.prototype.addSchema>): AjvPack;
+ addKeyword(...args: Parameters<typeof Ajv.prototype.addKeyword>): AjvPack;
+}