mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 18:49:30 +08:00
8 lines
320 B
Text
8 lines
320 B
Text
import type {Vocabulary} from "../types"
|
|
import dependentRequired from "./validation/dependentRequired"
|
|
import dependentSchemas from "./applicator/dependentSchemas"
|
|
import limitContains from "./validation/limitContains"
|
|
|
|
const next: Vocabulary = [dependentRequired, dependentSchemas, limitContains]
|
|
|
|
export default next
|