Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Nov 3, 2023
1 parent 6f1177c commit 7701aa0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

6 changes: 3 additions & 3 deletions docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ interface WriteFile {
* var opts = { 'flag': 'r' };
* writeFile( './beep/boop.txt', 'beep boop\n', opts, onWrite );
*/
( file: string | Buffer | number, data: string | Buffer, options: Options | string, clbk: Callback ): void; // tslint-disable-line max-line-length
( file: string | Buffer | number, data: string | Buffer, options: Options | string, clbk: Callback ): void;

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

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

/**
Expand Down

0 comments on commit 7701aa0

Please sign in to comment.