provider/types/vue.d.ts

7 lines
135 B
TypeScript

import { ProviderInstance } from '.'
declare module 'vuex/types/index' {
interface Store<S> {
$provider: ProviderInstance,
}
}