We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4942979 commit ea4ea7eCopy full SHA for ea4ea7e
types/index.d.ts
@@ -29,7 +29,7 @@ interface AxiosOptions {
29
browserBaseURL?: string,
30
credentials?: boolean,
31
debug?: boolean,
32
- host?: string,
+ host?: string,
33
prefix?: string,
34
progress?: boolean,
35
proxyHeaders?: boolean,
@@ -49,6 +49,12 @@ interface AxiosOptions {
49
},
50
}
51
52
+declare module 'axios' {
53
+ interface AxiosRequestConfig {
54
+ progress?: boolean;
55
+ }
56
+}
57
+
58
declare module '@nuxt/vue-app' {
59
interface Context {
60
$axios: NuxtAxiosInstance
0 commit comments