refactor(ui): add types export control
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / charging-stations / CSTable.vue
index 43d03e32ed163e39a827378bd27ebd949e495861..b4be09912e1c9e2b5a397b163d485b31fa98fec2 100644 (file)
@@ -31,7 +31,7 @@
 
 <script setup lang="ts">
 import CSData from './CSData.vue';
-import type { ChargingStationData } from '@/types/ChargingStationType';
+import type { ChargingStationData } from '@/types';
 
 const props = defineProps<{
   chargingStations: ChargingStationData[];