blessing-skin-server/resources/assets/tests/shims.d.ts
2019-12-01 19:05:02 +08:00

16 lines
307 B
TypeScript

import Vue from 'vue'
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>
}
$t(key: string, parameters?: object): string
}
}
}