blessing-skin-server/resources/assets/tests/ts-shims/notify.ts
2021-06-05 17:10:41 +08:00

9 lines
255 B
TypeScript

import type { ModalOptions, ModalResult } from '../../src/components/Modal'
import type { Toast } from '../../src/scripts/toast'
export const showModal = {} as jest.Mock<
Promise<ModalResult>,
[ModalOptions | void]
>
export const toast = {} as Toast