Node.d.ts: Update definitions for module "fs" (#10987)

This commit is contained in:
hriss95
2016-09-06 16:12:01 +01:00
committed by Masahiro Wakame
parent 2bf1d27063
commit 3be6a88598

2
node/node.d.ts vendored
View File

@@ -1719,6 +1719,8 @@ declare module "fs" {
fd?: number;
mode?: number;
}): WriteStream;
export function fdatasync(fd: number, callback: Function): void;
export function fdatasyncSync(fd: number): void;
}
declare module "path" {