refactor(ui): add types export control
[e-mobility-charging-stations-simulator.git] / ui / web / src / views / ChargingStationsView.vue
index e0f86dd616dc64abde964742b66b9e984c9ef589..b4f4c39f56d7a3073c57d8e365c5fa3a0aa7d40c 100644 (file)
@@ -19,7 +19,7 @@
 <script setup lang="ts">
 import { onMounted, reactive } from 'vue';
 import CSTable from '@/components/charging-stations/CSTable.vue';
-import type { ChargingStationData } from '@/types/ChargingStationType';
+import type { ChargingStationData } from '@/types';
 import Container from '@/components/Container.vue';
 import ReloadButton from '@/components/buttons/ReloadButton.vue';
 import UIClient from '@/composables/UIClient';