13 lines
200 B
TypeScript
13 lines
200 B
TypeScript
|
import Vue from 'vue'
|
||
|
|
||
|
declare module 'vue/types/vue' {
|
||
|
interface VueConstructor {
|
||
|
prototype: Vue & {
|
||
|
$http: {
|
||
|
get: jest.Mock<any>
|
||
|
post: jest.Mock<any>
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|