Interface RecordEnumPropertyType

interface RecordEnumPropertyType {
    list: boolean;
    maxListSize?: number;
    type: "enum";
    unknownValue?: string;
    values: Record<string, RecordEnumValue>;
}

Properties

list: boolean
maxListSize?: number
type: "enum"
unknownValue?: string
values: Record<string, RecordEnumValue>