main
Last change
on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
731 bytes
|
Rev | Line | |
---|
[79a0317] | 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.