In fs's truncate functions, 'len' is optional (and defaults to 0).

This commit is contained in:
John Vilk
2013-09-27 15:20:58 -04:00
parent b6874ee014
commit d39e7a3125

6
node/node.d.ts vendored
View File

@@ -725,10 +725,12 @@ declare module "fs" {
export function rename(oldPath: string, newPath: string, callback?: Function): void;
export function renameSync(oldPath: string, newPath: string): void;
export function truncate(path: string, callback?: Function): void;
export function truncate(path: string, len: number, callback?: Function): void;
export function truncateSync(path: string, len: number): void;
export function truncateSync(path: string, len?: number): void;
export function ftruncate(fd: string, callback?: Function): void;
export function ftruncate(fd: string, len: number, callback?: Function): void;
export function ftruncateSync(fd: string, len: number): void;
export function ftruncateSync(fd: string, len?: number): void;
export function chown(path: string, uid: number, gid: number, callback?: Function): void;
export function chownSync(path: string, uid: number, gid: number): void;
export function fchown(fd: string, uid: number, gid: number, callback?: Function): void;