blessing-skin-server/resources/assets/src/scripts/notify.ts
2020-02-06 09:22:10 +08:00

16 lines
310 B
TypeScript

import { showModal } from './modal'
import { Toast } from './toast'
export const toast = new Toast()
/* istanbul ignore next */
if (process.env.NODE_ENV === 'test') {
afterEach(() => {
toast.clear()
})
}
Object.assign(blessing, { notify: { showModal, toast } })
export { showModal } from './modal'