13 lines
233 B
TypeScript
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>
|
|
}
|
|
}
|
|
}
|
|
}
|