diff options
-rw-r--r-- | packages/bun-types/fs.d.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/bun-types/fs.d.ts b/packages/bun-types/fs.d.ts index cc3483b53..5fb552b7c 100644 --- a/packages/bun-types/fs.d.ts +++ b/packages/bun-types/fs.d.ts @@ -3649,7 +3649,7 @@ declare module "fs" { // prependOnceListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; // prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; } - function fdatasync(fd: number, callback: NoParamCallback): void; + // function fdatasync(fd: number, callback: NoParamCallback): void; // namespace fdatasync { // /** // * Asynchronous fdatasync(2) - synchronize a file's in-core state with storage device. @@ -3662,7 +3662,7 @@ declare module "fs" { * operating system's synchronized I/O completion state. Refer to the POSIX [`fdatasync(2)`](http://man7.org/linux/man-pages/man2/fdatasync.2.html) documentation for details. Returns `undefined`. * @since v0.0.67 */ - function fdatasyncSync(fd: number): void; + // function fdatasyncSync(fd: number): void; /** * Asynchronously copies `src` to `dest`. By default, `dest` is overwritten if it * already exists. No arguments other than a possible exception are given to the |