Merge pull request #7590 from AyaMorisawa/fs-extra-patch1

Fix #7131
This commit is contained in:
Horiuchi_H
2016-01-20 16:50:44 +09:00
+2 -2
View File
@@ -70,8 +70,8 @@ declare module "fs-extra" {
export function readJSON(file: string, callback?: (err: Error) => void): void;
export function readJSON(file: string, options?: OpenOptions, callback?: (err: Error) => void): void;
export function readJsonSync(file: string, options?: OpenOptions): void;
export function readJSONSync(file: string, options?: OpenOptions): void;
export function readJsonSync(file: string, options?: OpenOptions): any;
export function readJSONSync(file: string, options?: OpenOptions): any;
export function remove(dir: string, callback?: (err: Error) => void): void;
export function removeSync(dir: string): void;