Refine TS and linter configuration
[e-mobility-charging-stations-simulator.git] / src / utils / FileUtils.ts
index 10317c7353f4855a4a0f24ecb42d809b5f0b1f03..8de719a152d35e9da5c16b434a3989ad3e95f782 100644 (file)
@@ -2,10 +2,10 @@ 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 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';