Represents an internal group in the IScaffold2 component.

interface IScaffold2GroupInternal<T = Payload> {
    children: IScaffold2OptionInternal<T>[];
    disabled: boolean;
    icon?: any;
    iconColor?: string;
    id: string;
    label?: string;
    noHeader?: boolean;
    path: string;
    visible: boolean;
}

Type Parameters

  • T = Payload

    The type of payload data. IScaffold2GroupInternal

Hierarchy

  • Omit<
        IScaffold2Group<T>,
        keyof { children: never; isDisabled: never; isVisible: never },
    >
    • IScaffold2GroupInternal

Properties

Represents a collection of internal options for a Scaffold2 component.

The type of the options.

disabled: boolean
icon?: any
iconColor?: string
id: string
label?: string
noHeader?: boolean
path: string
visible: boolean