LiveAtlas/src/vuex.d.ts

9 lines
228 B
TypeScript
Raw Normal View History

2020-11-23 12:13:28 +00:00
import { ComponentCustomProperties } from 'vue'
import {State, Store} from "@/store";
declare module '@vue/runtime-core' {
// provide typings for `this.$store`
interface ComponentCustomProperties {
$store: Store<State>
}
}