You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
541 B
10 lines
541 B
import type { Vocabulary } from "../../types";
|
|
import { JTDTypeError } from "./type";
|
|
import { JTDEnumError } from "./enum";
|
|
import { JTDElementsError } from "./elements";
|
|
import { JTDPropertiesError } from "./properties";
|
|
import { JTDDiscriminatorError } from "./discriminator";
|
|
import { JTDValuesError } from "./values";
|
|
declare const jtdVocabulary: Vocabulary;
|
|
export default jtdVocabulary;
|
|
export declare type JTDErrorObject = JTDTypeError | JTDEnumError | JTDElementsError | JTDPropertiesError | JTDDiscriminatorError | JTDValuesError;
|