next.ts 320 B

12345678
  1. import type {Vocabulary} from "../types"
  2. import dependentRequired from "./validation/dependentRequired"
  3. import dependentSchemas from "./applicator/dependentSchemas"
  4. import limitContains from "./validation/limitContains"
  5. const next: Vocabulary = [dependentRequired, dependentSchemas, limitContains]
  6. export default next