persona-community-5/.pnpm-store/v3/files/0d/20155218c0078d966b96e44b34f3974c4c3e00c98c9f8e03e56e20ae8f4d634154e7eb7ef1814dfdbb5eff2edc19ffeb3686147922f29e28955a378b309f93
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

17 lines
311 B
Plaintext

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]