refactor: more coding style fixes
[e-mobility-charging-stations-simulator.git] / src / utils / AsyncLock.ts
index c6b35b84457fa9f090b002417e4cbdfeb32cfb5e..b58e3a77eb780a8e4836f7150658ad8268dd6233 100644 (file)
@@ -6,7 +6,7 @@ import { Constants } from './Constants.js'
 
 export enum AsyncLockType {
   configuration = 'configuration',
-  performance = 'performance'
+  performance = 'performance',
 }
 
 type ResolveType = (value: void | PromiseLike<void>) => void