UNPKG

@rws-framework/client

Version:

Realtime Web Suit is a web-component powered, MS FAST powered fullstack-oriented framework that you can use to create domain-agnostic modular asynchoronous components with intershared authorized states.

7 lines (5 loc) 326 B
type NotifyUiType = 'alert' | 'notification' | 'silent'; type NotifyLogType = 'info' | 'error' | 'warning'; type RWSNotify = (message: string, logType?: NotifyLogType, uiType?: NotifyUiType, onConfirm?: (params?: any) => void, notifierOptions?: any) => any; export default RWSNotify; export { NotifyUiType, NotifyLogType };