MapComplete/UI/Studio/configMeta.ts

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
}