// vuex-shim.d.ts import { ComponentCustomProperties } from 'vue' import { Store } from 'vuex' // Your own store state interface IMyState { count: number } declare module '@vue/runtime-core' { interface ComponentCustomProperties { $store: Store } }