main
Last change
on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
533 bytes
|
Line | |
---|
1 | import type { Vocabulary } from "../../types";
|
---|
2 | import { JTDTypeError } from "./type";
|
---|
3 | import { JTDEnumError } from "./enum";
|
---|
4 | import { JTDElementsError } from "./elements";
|
---|
5 | import { JTDPropertiesError } from "./properties";
|
---|
6 | import { JTDDiscriminatorError } from "./discriminator";
|
---|
7 | import { JTDValuesError } from "./values";
|
---|
8 | declare const jtdVocabulary: Vocabulary;
|
---|
9 | export default jtdVocabulary;
|
---|
10 | export type JTDErrorObject = JTDTypeError | JTDEnumError | JTDElementsError | JTDPropertiesError | JTDDiscriminatorError | JTDValuesError;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.