UNPKG

rws-js-client

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