From: Jérôme Benoit Date: Fri, 6 May 2022 09:13:17 +0000 (+0200) Subject: Remove uneeded type usage X-Git-Tag: v1.1.59~9 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=94bb13e94ea30681110758c6a0a80217a668e793;p=e-mobility-charging-stations-simulator.git Remove uneeded type usage Signed-off-by: Jérôme Benoit --- diff --git a/src/utils/FileUtils.ts b/src/utils/FileUtils.ts index c61ff8f4..b057d7f7 100644 --- a/src/utils/FileUtils.ts +++ b/src/utils/FileUtils.ts @@ -1,15 +1,14 @@ -import { JsonObject, JsonType } from '../types/JsonType'; - import { EmptyObject } from '../types/EmptyObject'; import { FileType } from '../types/FileType'; import { HandleErrorParams } from '../types/Error'; +import { JsonType } from '../types/JsonType'; import Utils from './Utils'; import chalk from 'chalk'; import fs from 'fs'; import logger from './Logger'; export default class FileUtils { - static watchJsonFile( + static watchJsonFile( logPrefix: string, fileType: FileType, file: string,