Preparing search index...
    interface FieldTreeSelectNodeType {
        children?: FieldTreeSelectNodeType[];
        disabled?: boolean;
        icon: "book" | "profile";
        key: number;
        leaf: boolean;
        selectable: boolean;
        title: string;
        value: string;
    }
    Index

    Properties

    disabled?: boolean
    icon: "book" | "profile"
    key: number
    leaf: boolean
    selectable: boolean
    title: string
    value: string