mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 08:52:59 +00:00
10 lines
328 B
TypeScript
10 lines
328 B
TypeScript
import type {Vocabulary} from "../../types"
|
|
import dynamicAnchor from "./dynamicAnchor"
|
|
import dynamicRef from "./dynamicRef"
|
|
import recursiveAnchor from "./recursiveAnchor"
|
|
import recursiveRef from "./recursiveRef"
|
|
|
|
const dynamic: Vocabulary = [dynamicAnchor, dynamicRef, recursiveAnchor, recursiveRef]
|
|
|
|
export default dynamic
|