Represents an internal interface for a scaffold tab.

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

Type Parameters

  • T = Payload

    The payload type of the tab.

Hierarchy

  • Omit<
        IScaffold3Tab<T>,
        keyof { isActive: never; isDisabled: never; isVisible: never },
    >
    • IScaffold3TabInternal

Properties

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