mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-01-06 13:34:50 +08:00
17 lines
409 B
TypeScript
17 lines
409 B
TypeScript
import * as notify from '../../src/js/notify'
|
|
|
|
export const showAjaxError = {} as jest.Mock<
|
|
ReturnType<typeof notify.showAjaxError>,
|
|
Parameters<typeof notify.showAjaxError>
|
|
>
|
|
|
|
export const showModal = {} as jest.Mock<
|
|
ReturnType<typeof notify.showModal>,
|
|
Parameters<typeof notify.showModal>
|
|
>
|
|
|
|
export const swal = {} as jest.Mock<
|
|
ReturnType<typeof notify.swal>,
|
|
Parameters<typeof notify.swal>
|
|
>
|