Skip to content

Commit 7701aa0

Browse files
committed
Auto-generated commit
1 parent 6f1177c commit 7701aa0

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ interface WriteFile {
7171
* var opts = { 'flag': 'r' };
7272
* writeFile( './beep/boop.txt', 'beep boop\n', opts, onWrite );
7373
*/
74-
( file: string | Buffer | number, data: string | Buffer, options: Options | string, clbk: Callback ): void; // tslint-disable-line max-line-length
74+
( file: string | Buffer | number, data: string | Buffer, options: Options | string, clbk: Callback ): void;
7575

7676
/**
7777
* Asynchronously writes data to a file.
@@ -89,7 +89,7 @@ interface WriteFile {
8989
*
9090
* writeFile( './beep/boop.txt', 'beep boop\n', onWrite );
9191
*/
92-
( file: string | Buffer | number, data: string | Buffer, clbk: Callback ): void; // tslint-disable-line max-line-length
92+
( file: string | Buffer | number, data: string | Buffer, clbk: Callback ): void;
9393

9494
/**
9595
* Synchronously writes data to a file.
@@ -105,7 +105,7 @@ interface WriteFile {
105105
* throw err;
106106
* }
107107
*/
108-
sync( file: string | Buffer | number, data: string | Buffer, options?: Options | string ): Error | null; // tslint-disable-line max-line-length
108+
sync( file: string | Buffer | number, data: string | Buffer, options?: Options | string ): Error | null;
109109
}
110110

111111
/**

0 commit comments

Comments
 (0)