12 lines
207 B
TypeScript
12 lines
207 B
TypeScript
|
import { ComponentCustomProperties } from 'vue';
|
||
|
import { Store } from 'vuex';
|
||
|
|
||
|
declare module '@vue/runtime-core' {
|
||
|
interface State {
|
||
|
}
|
||
|
|
||
|
interface ComponentCustomProperties {
|
||
|
$store: Store<State>
|
||
|
}
|
||
|
}
|