mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
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>
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|