refactor(simulator): switch to named exports
[e-mobility-charging-stations-simulator.git] / src / utils / FileUtils.ts
index ee8f053c59e5d23c579d4d31234e0e255cb64cad..9b7f62e0af7431759af8d56c0f18f37f293d8a67 100644 (file)
@@ -2,14 +2,11 @@ import fs from 'node:fs';
 
 import chalk from 'chalk';
 
-import logger from './Logger';
-import Utils from './Utils';
-import type { EmptyObject } from '../types/EmptyObject';
-import type { HandleErrorParams } from '../types/Error';
-import type { FileType } from '../types/FileType';
-import type { JsonType } from '../types/JsonType';
+import { logger } from './Logger';
+import { Utils } from './Utils';
+import type { EmptyObject, FileType, HandleErrorParams, JsonType } from '../types';
 
-export default class FileUtils {
+export class FileUtils {
   private constructor() {
     // This is intentional
   }