source: frontend/node_modules/schema-utils/declarations/index.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 715 bytes
Line 
1export type Schema = import("./validate").Schema;
2export type JSONSchema4 = import("./validate").JSONSchema4;
3export type JSONSchema6 = import("./validate").JSONSchema6;
4export type JSONSchema7 = import("./validate").JSONSchema7;
5export type ExtendedSchema = import("./validate").ExtendedSchema;
6export type ValidationErrorConfiguration =
7 import("./validate").ValidationErrorConfiguration;
8import { validate } from "./validate";
9import { ValidationError } from "./validate";
10import { enableValidation } from "./validate";
11import { disableValidation } from "./validate";
12import { needValidate } from "./validate";
13export {
14 validate,
15 ValidationError,
16 enableValidation,
17 disableValidation,
18 needValidate,
19};
Note: See TracBrowser for help on using the repository browser.