@@ -17,9 +17,9 @@ const {
17
17
18
18
/** @typedef {import("./ResolverFactory").ResolveOptions } ResolveOptions */
19
19
20
- /** @typedef {Error & {details?: string} } ErrorWithDetail */
20
+ /** @typedef {Error & { details?: string } } ErrorWithDetail */
21
21
22
- /** @typedef {(err: ErrorWithDetail| null, res?: string| false, req?: ResolveRequest) => void } ResolveCallback */
22
+ /** @typedef {(err: ErrorWithDetail | null, res?: string | false, req?: ResolveRequest) => void } ResolveCallback */
23
23
24
24
/**
25
25
* @typedef {Object } FileSystemStats
@@ -65,7 +65,7 @@ const {
65
65
* @property {(function(string, FileSystemCallback<Buffer | string>): void) & function(string, object, FileSystemCallback<Buffer | string>): void } readlink
66
66
* @property {(function(string, FileSystemCallback<FileSystemStats>): void) & function(string, object, FileSystemCallback<Buffer | string>): void= } lstat
67
67
* @property {(function(string, FileSystemCallback<FileSystemStats>): void) & function(string, object, FileSystemCallback<Buffer | string>): void } stat
68
- * @property {(function(string, FileSystemCallback<FileSystemStats >): void) & function(string, object, FileSystemCallback<Buffer | string>): void } realpath
68
+ * @property {(function(string, FileSystemCallback<Buffer | string >): void) & function(string, object, FileSystemCallback<Buffer | string>): void= } realpath
69
69
*/
70
70
71
71
/**
@@ -76,7 +76,7 @@ const {
76
76
* @property {function(string, object=): Buffer | string } readlinkSync
77
77
* @property {function(string, object=): FileSystemStats= } lstatSync
78
78
* @property {function(string, object=): FileSystemStats } statSync
79
- * @property {function(string, object=): string | Buffer } realpathSync
79
+ * @property {function(string, object=): string | Buffer= } realpathSync
80
80
*/
81
81
82
82
/**
0 commit comments