UI Services: add status notification command
[e-mobility-charging-stations-simulator.git] / src / types / Storage.ts
index bad6fc8c38651d3f2cde19b55b05f8b3f3d7a0e7..bb300c2387fc1e41cb57b01facdfc793f3c9926d 100644 (file)
@@ -1,4 +1,4 @@
-import { Configuration } from '@mikro-orm/core';
+import type { Configuration } from '@mikro-orm/core';
 
 export type MikroORMDBType = keyof typeof Configuration.PLATFORMS;
 
@@ -7,13 +7,12 @@ export enum StorageType {
   MONGO_DB = 'mongodb',
   MYSQL = 'mysql',
   MARIA_DB = 'mariadb',
-  SQLITE = 'sqlite'
+  SQLITE = 'sqlite',
 }
 
 export enum DBName {
   MONGO_DB = 'MongoDB',
   MYSQL = 'MySQL',
   MARIA_DB = 'MariaDB',
-  SQLITE = 'SQLite'
+  SQLITE = 'SQLite',
 }
-