diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-09 21:09:57 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-09 21:09:57 +1000 |
commit | 39f2704bd73971867301a7d424d9f2464916785d (patch) | |
tree | 9078c96685422de9e060b2ed1b5ac4f2359df9be /cli/tsc/dts/lib.deno.ns.d.ts | |
parent | ce1d668929a91da2dc204f6bcc53afd5173c0a33 (diff) |
BREAKING(fs): remove `Deno.fdatasync[Sync]()` (#25520)
Diffstat (limited to 'cli/tsc/dts/lib.deno.ns.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.deno.ns.d.ts | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 320e6f29b..309f6ade8 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -1958,40 +1958,6 @@ declare namespace Deno { */ export function fsyncSync(rid: number): void; - /** - * Flushes any pending data operations of the given file stream to disk. - * ```ts - * const file = await Deno.open( - * "my_file.txt", - * { read: true, write: true, create: true }, - * ); - * await file.write(new TextEncoder().encode("Hello World")); - * await Deno.fdatasync(file.rid); - * console.log(await Deno.readTextFile("my_file.txt")); // Hello World - * ``` - * - * @category File System - */ - export function fdatasync(rid: number): Promise<void>; - - /** - * Synchronously flushes any pending data operations of the given file stream - * to disk. - * - * ```ts - * const file = Deno.openSync( - * "my_file.txt", - * { read: true, write: true, create: true }, - * ); - * file.writeSync(new TextEncoder().encode("Hello World")); - * Deno.fdatasyncSync(file.rid); - * console.log(Deno.readTextFileSync("my_file.txt")); // Hello World - * ``` - * - * @category File System - */ - export function fdatasyncSync(rid: number): void; - /** The Deno abstraction for reading and writing files. * * This is the most straight forward way of handling files within Deno and is |