Represents an internal interface for a master-detail option.

interface IMasterDetailOptionInternal<Payload = any> {
    active: boolean;
    disabled: boolean;
    icon?: any;
    id: string;
    label?: string;
    visible: boolean;
}

Type Parameters

  • Payload = any

    The type of payload associated with the option.

Hierarchy

  • Omit<
        IMasterDetailOption<Payload>,
        keyof { isActive: never; isDisabled: never; isVisible: never },
    >
    • IMasterDetailOptionInternal

Properties

active: boolean
disabled: boolean
icon?: any
id: string
label?: string
visible: boolean