funkwhale/front/src/shims-vuex.d.ts

9 wiersze
178 B
TypeScript

import { Store } from 'vuex'
import { RootState } from '~/store'
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
$store: Store<RootState>
}
}