Skip to content

Commit 58c5d57

Browse files
committed
Meta tweaks
1 parent 182dd94 commit 58c5d57

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

index.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ export interface Options {
4242
* import * as writeJsonFile from 'write-json-file';
4343
*
4444
* writeJsonFile.sync('foo.json', {foo: true});
45-
* console.log('done');
4645
*/
4746
export function sync(filepath: string, data: JSONStringifyable, options?: Options): void;
4847

@@ -56,7 +55,6 @@ export function sync(filepath: string, data: JSONStringifyable, options?: Option
5655
*
5756
* (async () => {
5857
* await writeJsonFile('foo.json', {foo: true});
59-
* console.log('done');
6058
* })();
6159
*/
6260
export default function writeJsonFile(filepath: string, data: JSONStringifyable, options?: Options): Promise<void>;

0 commit comments

Comments
 (0)