Skip to content

Commit c3b41e3

Browse files
authoredJan 2, 2022
Fix Buffer type
Closes GH-20. Reviewed-by: Christian Murphy <christian.murphy.42@gmail.com> Reviewed-by: Titus Wormer <tituswormer@gmail.com>
1 parent e6fcd3e commit c3b41e3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎lib/index.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
* @typedef {BufferEncoding|{encoding?: null|BufferEncoding, flag?: string}} ReadOptions
88
* @typedef {BufferEncoding|{encoding?: null|BufferEncoding, mode: Mode?, flag?: string}} WriteOptions
99
*
10-
* @typedef {string|Uint8Array} Path Path of the file.
11-
* @typedef {Path|URL|Options|VFile} Compatible Things that can be
10+
* @typedef {URL|Value} Path Path of the file.
11+
* Note: `Value` is used here because it’s a smarter `Buffer`
12+
* @typedef {Path|Options|VFile} Compatible Things that can be
1213
* passed to the function.
1314
*/
1415

0 commit comments

Comments
 (0)
Please sign in to comment.