15 lines
315 B
TypeScript
15 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
|
||
|
}
|