provider/types/vue.d.ts

7 lines
135 B
TypeScript
Raw Normal View History

2020-11-05 22:10:04 +01:00
import { ProviderInstance } from '.'
declare module 'vuex/types/index' {
interface Store<S> {
$provider: ProviderInstance,
}
}