aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/vuex-shim.d.ts
blob: 1429115b6be53288f57a2bfa02efc485f88880dc (plain)
1
2
3
4
5
6
7
8
import { ComponentCustomProperties } from 'vue'
import { Store } from 'vuex'

declare module '@vue/runtime-core' {
    interface ComponentCustomProperties {
        $store: Store<State>
    }
}