mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 02:09:30 +08:00
11 lines
280 B
Text
11 lines
280 B
Text
import type {CodeKeywordDefinition} from "../../types"
|
|
import {validateSchemaDeps} from "./dependencies"
|
|
|
|
const def: CodeKeywordDefinition = {
|
|
keyword: "dependentSchemas",
|
|
type: "object",
|
|
schemaType: "object",
|
|
code: (cxt) => validateSchemaDeps(cxt),
|
|
}
|
|
|
|
export default def
|