Interface UiSchemaBase<Value>

interface UiSchemaBase<Value> {
    const?: Value;
    default?: Value;
    description?: string;
    enum?: Value[];
    enumDescriptions?: string[];
    enumItemLabels?: string[];
    hidden?: boolean;
    markdownDescription?: string;
    markdownEnumDescriptions?: string[];
    order?: number;
}

Type Parameters

  • Value

Hierarchy (view full)

Properties

const?: Value
default?: Value
description?: string
enum?: Value[]
enumDescriptions?: string[]
enumItemLabels?: string[]
hidden?: boolean
markdownDescription?: string
markdownEnumDescriptions?: string[]
order?: number

Generated using TypeDoc