7 lines
309 B
Plaintext
7 lines
309 B
Plaintext
import type { SchemaObject } from "../../types";
|
|
export type SchemaObjectMap = {
|
|
[Ref in string]?: SchemaObject;
|
|
};
|
|
export declare const jtdForms: readonly ["elements", "values", "discriminator", "properties", "optionalProperties", "enum", "type", "ref"];
|
|
export type JTDForm = (typeof jtdForms)[number];
|