Urara-Blog/node_modules/.pnpm-store/v3/files/2e/34676e1b8b6bac7faee948430ab0e9b76031610c4d9365b9caa667fae80bdfa876d8d2d32d7b7eded27c9f3b74b0a75b10b89410737a42b2622eddf42f277c
2022-08-14 01:14:53 +08:00

10 lines
541 B
Text

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;