Linter fixes
[e-mobility-charging-stations-simulator.git] / src / utils / FileUtils.ts
index 10317c7353f4855a4a0f24ecb42d809b5f0b1f03..0efccbc3c8ceeadf52ceaae6f2b0c83b1264e1c5 100644 (file)
@@ -2,12 +2,12 @@ import fs from 'fs';
 
 import chalk from 'chalk';
 
-import { EmptyObject } from '../types/EmptyObject';
-import { HandleErrorParams } from '../types/Error';
-import { FileType } from '../types/FileType';
-import { JsonType } from '../types/JsonType';
 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';
 
 export default class FileUtils {
   private constructor() {