mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 01:59:31 +08:00
16 lines
309 B
Text
16 lines
309 B
Text
import type {SchemaObject} from "../../types"
|
|
|
|
export type SchemaObjectMap = {[Ref in string]?: SchemaObject}
|
|
|
|
export const jtdForms = [
|
|
"elements",
|
|
"values",
|
|
"discriminator",
|
|
"properties",
|
|
"optionalProperties",
|
|
"enum",
|
|
"type",
|
|
"ref",
|
|
] as const
|
|
|
|
export type JTDForm = typeof jtdForms[number]
|