2023-06-16 02:36:11 +02:00
|
|
|
import { JsonSchema, JsonSchemaType } from "./jsonSchema"
|
|
|
|
|
|
|
|
export interface ConfigMeta {
|
|
|
|
path: string[]
|
|
|
|
type: JsonSchemaType | JsonSchema[]
|
|
|
|
hints: {
|
|
|
|
group?: string
|
|
|
|
typehint?: string
|
|
|
|
question?: string
|
|
|
|
ifunset?: string
|
2023-06-18 00:44:57 +02:00
|
|
|
inline?: string
|
2023-06-16 02:36:11 +02:00
|
|
|
}
|
|
|
|
required: boolean
|
|
|
|
description: string
|
|
|
|
}
|