chore(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / ui / web / src / shims-vue.d.ts
CommitLineData
48847bc0 1export type {}
faf9c82d
JB
2
3declare module 'vue' {
4 export interface GlobalComponents {
5 RouterLink: (typeof import('vue-router'))['RouterLink']
6 RouterView: (typeof import('vue-router'))['RouterView']
7 }
8 interface ComponentCustomProperties {
0749233f 9 $chargingStations: import('vue').Ref<import('@/types').ChargingStationData[]> | undefined
3083f76e
JB
10 $configuration: import('vue').Ref<import('@/types').ConfigurationData> | undefined
11 $templates: import('vue').Ref<string[]> | undefined
3083f76e 12 $uiClient: import('@/composables').UIClient | undefined
faf9c82d 13 }
32de5a57 14}