Interface BooleanUiSchema

interface BooleanUiSchema {
    const?: boolean;
    default?: boolean;
    description?: string;
    enum?: boolean[];
    enumDescriptions?: string[];
    enumItemLabels?: string[];
    hidden?: boolean;
    markdownDescription?: string;
    markdownEnumDescriptions?: string[];
    order?: number;
    type: "boolean";
}

Hierarchy (view full)

Properties

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

Generated using TypeDoc