mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-28 02:40:33 +01:00
testing
This commit is contained in:
15
index.d.ts
vendored
15
index.d.ts
vendored
@@ -1,27 +1,26 @@
|
||||
import { NuxtAxiosInstance } from '@nuxtjs/axios'
|
||||
import VueI18n, {IVueI18n} from "vue-i18n";
|
||||
|
||||
declare module 'vue/types/vue' {
|
||||
|
||||
interface Vue {
|
||||
$axios: NuxtAxiosInstance
|
||||
i18n: any
|
||||
$axios: NuxtAxiosInstance,
|
||||
}
|
||||
}
|
||||
|
||||
declare module '@nuxt/types' {
|
||||
|
||||
interface NuxtAppOptions {
|
||||
$axios: NuxtAxiosInstance
|
||||
$i18n: any
|
||||
$axios: NuxtAxiosInstance,
|
||||
}
|
||||
|
||||
interface Context {
|
||||
$axios: NuxtAxiosInstance
|
||||
$i18n: any
|
||||
$axios: NuxtAxiosInstance,
|
||||
$i18n: VueI18n & IVueI18n
|
||||
}
|
||||
}
|
||||
|
||||
declare module 'vuex/types/index' {
|
||||
interface Store<S> {
|
||||
$axios: NuxtAxiosInstance
|
||||
i18n: any
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user