http/types/vuex.d.ts

8 lines
120 B
TypeScript

import { NuxtHTTPInstance } from '.'
declare module 'vuex' {
interface Store<S> {
$http: NuxtHTTPInstance,
}
}