Skip to content

Commit e6746f3

Browse files
committed
Formatting
1 parent d082665 commit e6746f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export type NodeReaddirOptions =
2323
export type NodeFS = {
2424
[K in keyof typeof fs]: (typeof fs)[K] extends (...args: any[]) => any
2525
? // Some kind of wizardry: by using a union with a regular function, overloads are preserved but the properties disappear.
26-
(typeof fs)[K] | ((...args: any[]) => any)
26+
(typeof fs)[K] | ((...args: any[]) => any)
2727
: (typeof fs)[K] extends object
2828
? Omit<(typeof fs)[K], '__promisify__' | 'native'>
2929
: (typeof fs)[K];

0 commit comments

Comments
 (0)