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

9 wiersze
178 B
TypeScript
Czysty Zwykły widok Historia

2022-05-02 15:06:44 +00:00
import { Store } from 'vuex'
import { RootState } from '~/store'
2022-05-02 15:06:44 +00:00
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
$store: Store<RootState>
2022-05-02 15:06:44 +00:00
}
}