13685ebb1076c6fcdd0f9e996214265d624b3b60
[e-mobility-charging-stations-simulator.git] / ui / web / src / shims-vue.d.ts
1 export type {}
2
3 declare module 'vue' {
4 export interface GlobalComponents {
5 RouterLink: (typeof import('vue-router'))['RouterLink']
6 RouterView: (typeof import('vue-router'))['RouterView']
7 }
8 interface ComponentCustomProperties {
9 $chargingStations: import('vue').Ref<import('@/types').ChargingStationData[]> | undefined
10 $configuration: import('vue').Ref<import('@/types').ConfigurationData> | undefined
11 $templates: import('vue').Ref<string[]> | undefined
12 $uiClient: import('@/composables').UIClient | undefined
13 }
14 }