blessing-skin-server/resources/assets/tests/ts-shims/notify.ts

9 lines
245 B
TypeScript
Raw Normal View History

2020-01-23 22:52:09 +08:00
import { ModalOptions, ModalResult } from '../../src/components/Modal'
import { Toast } from '../../src/scripts/toast'
2019-03-17 21:09:46 +08:00
2020-05-16 22:05:16 +08:00
export const showModal = {} as jest.Mock<
Promise<ModalResult>,
[ModalOptions | void]
>
export const toast = {} as Toast