provider/types/vue.d.ts
2020-11-06 00:10:04 +03:00

7 lines
135 B
TypeScript

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