Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
731 bytes
|
Line | |
---|
1 | import type {TypeError} from "../compile/validate/dataType"
|
---|
2 | import type {ApplicatorKeywordError} from "./applicator"
|
---|
3 | import type {ValidationKeywordError} from "./validation"
|
---|
4 | import type {FormatError} from "./format/format"
|
---|
5 | import type {UnevaluatedPropertiesError} from "./unevaluated/unevaluatedProperties"
|
---|
6 | import type {UnevaluatedItemsError} from "./unevaluated/unevaluatedItems"
|
---|
7 | import type {DependentRequiredError} from "./validation/dependentRequired"
|
---|
8 | import type {DiscriminatorError} from "./discriminator"
|
---|
9 |
|
---|
10 | export type DefinedError =
|
---|
11 | | TypeError
|
---|
12 | | ApplicatorKeywordError
|
---|
13 | | ValidationKeywordError
|
---|
14 | | FormatError
|
---|
15 | | UnevaluatedPropertiesError
|
---|
16 | | UnevaluatedItemsError
|
---|
17 | | DependentRequiredError
|
---|
18 | | DiscriminatorError
|
---|
Note:
See
TracBrowser
for help on using the repository browser.