-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathindex.d.ts
More file actions
37 lines (29 loc) · 785 Bytes
/
Copy pathindex.d.ts
File metadata and controls
37 lines (29 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { AxiosInstance, AxiosStatic } from "axios";
import { App } from "vue";
type VueAxiosInstance = AxiosInstance | AxiosStatic;
declare module "vue" {
export interface ComponentCustomProperties {
$http: VueAxiosInstance;
axios: VueAxiosInstance;
}
}
declare module "@vue/runtime-core" {
export interface ComponentCustomProperties {
$http: VueAxiosInstance;
axios: VueAxiosInstance;
}
export interface App {
axios: VueAxiosInstance;
}
}
declare module 'vue/types/vue' {
interface Vue {
$http: VueAxiosInstance;
axios: VueAxiosInstance;
}
interface VueConstructor {
axios: VueAxiosInstance;
}
}
declare function VueAxios(app: App, axios: VueAxiosInstance | Record<string, VueAxiosInstance>): void;
export default VueAxios;