Initial data for {@see Link}.

interface LinkData {
    access?: (() => boolean);
    enable?: boolean;
    info?: string;
    label: string;
    routerLink: RouterLink;
}

Properties

access?: (() => boolean)

Type declaration

    • (): boolean
    • Method that its return value sets value of {@see enable}.

      Returns boolean

enable?: boolean
info?: string
label: string
routerLink: RouterLink