hexo/node_modules/ajv/lib/vocabularies/draft7.ts

18 lines
488 B
TypeScript
Raw Normal View History

2023-09-25 15:58:56 +08:00
import type {Vocabulary} from "../types"
import coreVocabulary from "./core"
import validationVocabulary from "./validation"
import applicatorVocabulary from "./applicator"
import formatVocabulary from "./format"
import {metadataVocabulary, contentVocabulary} from "./metadata"
const draft7Vocabularies: Vocabulary[] = [
coreVocabulary,
validationVocabulary,
applicatorVocabulary,
formatVocabulary,
metadataVocabulary,
contentVocabulary,
]
export default draft7Vocabularies