UNPKG

outsystems-ui

Version:
26 lines (24 loc) 531 B
// eslint-disable-next-line @typescript-eslint/no-unused-vars namespace OSFramework.OSUI.Patterns.Notification { /** * Defines the interface for OutSystemsUI Notification Pattern * * @export * @interface INotification * @extends {Interface.IPattern} */ export interface INotification extends Interface.IPattern { /** * Method to hide the notification * * @memberof INotification */ hide(): void; /** * Method to show the notification * * @memberof INotification */ show(): void; } }