@rws-framework/client
Version:
This package provides the core client-side framework for Realtime Web Suit (RWS), enabling modular, asynchronous web components, state management, and integration with backend services. It is located in `.dev/client`.
7 lines (5 loc) • 326 B
text/typescript
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 };