blob: 40438a979fdf210411e821181ad41f788d0e3d89 (
plain)
1
2
3
4
5
6
7
8
|
import { ComponentCustomProperties } from 'vue'
import { Store } from 'vuex'
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
$store: Store<FlightCoreStore>
}
}
|