Remove uneeded type usage
authorJérôme Benoit <jerome.benoit@sap.com>
Fri, 6 May 2022 09:13:17 +0000 (11:13 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Fri, 6 May 2022 09:13:17 +0000 (11:13 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/utils/FileUtils.ts

index c61ff8f4f8d245a680b8b429ec5db6d4668fcb58..b057d7f7e844b4684f823903bc22a60f98e200dd 100644 (file)
@@ -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<T extends JsonObject | JsonType>(
+  static watchJsonFile<T extends JsonType>(
     logPrefix: string,
     fileType: FileType,
     file: string,