|
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 | |
|---|
| 1 | export type Schema = import("./validate").Schema;
|
|---|
| 2 | export type JSONSchema4 = import("./validate").JSONSchema4;
|
|---|
| 3 | export type JSONSchema6 = import("./validate").JSONSchema6;
|
|---|
| 4 | export type JSONSchema7 = import("./validate").JSONSchema7;
|
|---|
| 5 | export type ExtendedSchema = import("./validate").ExtendedSchema;
|
|---|
| 6 | export type ValidationErrorConfiguration =
|
|---|
| 7 | import("./validate").ValidationErrorConfiguration;
|
|---|
| 8 | import { validate } from "./validate";
|
|---|
| 9 | import { ValidationError } from "./validate";
|
|---|
| 10 | import { enableValidation } from "./validate";
|
|---|
| 11 | import { disableValidation } from "./validate";
|
|---|
| 12 | import { needValidate } from "./validate";
|
|---|
| 13 | export {
|
|---|
| 14 | validate,
|
|---|
| 15 | ValidationError,
|
|---|
| 16 | enableValidation,
|
|---|
| 17 | disableValidation,
|
|---|
| 18 | needValidate,
|
|---|
| 19 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.