mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-19 16:32:58 +00:00
9 lines
320 B
TypeScript
9 lines
320 B
TypeScript
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
|