index.d.ts 533 B

12345678910
  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;