blessing-skin-server/resources/assets/tests/shims.d.ts
2019-12-01 18:08:21 +08:00

13 lines
233 B
TypeScript

declare module 'vue/types/vue' {
interface VueConstructor {
prototype: Vue & {
$http: {
get: jest.Mock<any>
post: jest.Mock<any>
put: jest.Mock<any>
del: jest.Mock<any>
}
}
}
}