fix(ui): refresh add charging stations button on UI server switch
[e-mobility-charging-stations-simulator.git] / src / types / Storage.ts
index bad6fc8c38651d3f2cde19b55b05f8b3f3d7a0e7..232c9d41069d86b61a3f9ff661c20a1fc812f389 100644 (file)
@@ -1,8 +1,5 @@
-import { Configuration } from '@mikro-orm/core';
-
-export type MikroORMDBType = keyof typeof Configuration.PLATFORMS;
-
 export enum StorageType {
+  NONE = 'none',
   JSON_FILE = 'jsonfile',
   MONGO_DB = 'mongodb',
   MYSQL = 'mysql',
@@ -16,4 +13,3 @@ export enum DBName {
   MARIA_DB = 'MariaDB',
   SQLITE = 'SQLite'
 }
-