UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

20 lines (19 loc) 571 B
import { TsxAllowUnknowProperties } from ".."; import { StatusMessageOverlayType, HttpStatusCode } from "../../models"; export interface IStatusMessageOverlay { overlay?: StatusMessageOverlayType; statusCode?: HttpStatusCode; icon?: string; content?: string | JSX.Element; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface IntrinsicElements { "omfx-status-message-overlay": TsxAllowUnknowProperties<IStatusMessageOverlay>; } } }