MapComplete/UI/Studio/configMeta.ts
2023-06-16 02:36:11 +02:00

14 lines
315 B
TypeScript

import { JsonSchema, JsonSchemaType } from "./jsonSchema"
export interface ConfigMeta {
path: string[]
type: JsonSchemaType | JsonSchema[]
hints: {
group?: string
typehint?: string
question?: string
ifunset?: string
}
required: boolean
description: string
}