fix(ocpp-server): silence linter
[e-mobility-charging-stations-simulator.git] / src / types / Storage.ts
index 92aa4cb44a344be2927c9a79b18aa578fe14aa16..232c9d41069d86b61a3f9ff661c20a1fc812f389 100644 (file)
@@ -1,18 +1,15 @@
-import type { 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',
   MARIA_DB = 'mariadb',
-  SQLITE = 'sqlite',
+  SQLITE = 'sqlite'
 }
 
 export enum DBName {
   MONGO_DB = 'MongoDB',
   MYSQL = 'MySQL',
   MARIA_DB = 'MariaDB',
-  SQLITE = 'SQLite',
+  SQLITE = 'SQLite'
 }