UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

26 lines (25 loc) 631 B
export interface ISecurityTrimer { [name: string]: any; content: JSX.Element; alternativeContent?: JSX.Element; roles: string[]; excludedRoles?: string[]; excludedRolesContent?: JSX.Element; clearCacheAndRetryIfUnauthorized?: boolean; contextParams?: { [key: string]: string | number; }; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface ElementAttributesProperty { } interface IntrinsicElements { "omfx-security-trimer": ISecurityTrimer; } } }