Interface SviShellTabData

interface SviShellTabData {
    requiredCapabilities?: RequiredResourcesExpression;
    requiredServices?: RequiredResourcesExpression;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

requiredCapabilities?: RequiredResourcesExpression

required user capabilities for the tab. if unmet, the tab is hidden and cannot be navigated to.

{ or: ["svi.administration.alerts", "svi.vsd.flow.view"] }
requiredServices?: RequiredResourcesExpression

REST APIs required by the tab's content. if unavailable, the tab is hidden and cannot be navigated to.

{ and: ["svi-alert", "documentGeneratorAdapter"] }