From 6c167c64d61ecfc912dc1b68d300f02aa3677235 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Thu, 23 May 2024 07:59:51 +1000 Subject: feat(ext/fs): stabilize `Deno.FsFile.syncData[Sync]()` and `Deno.FsFile.sync[Sync]()` (#23733) Closes #22230 --- cli/tsc/dts/lib.deno.ns.d.ts | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'cli/tsc') diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 09c669c28..c6b9df222 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -2563,8 +2563,7 @@ declare namespace Deno { * ``` */ statSync(): FileInfo; - /** **UNSTABLE**: New API, yet to be vetted. - * + /** * Flushes any pending data and metadata operations of the given file * stream to disk. * @@ -2582,8 +2581,7 @@ declare namespace Deno { * @category I/O */ sync(): Promise; - /** **UNSTABLE**: New API, yet to be vetted. - * + /** * Synchronously flushes any pending data and metadata operations of the given * file stream to disk. * @@ -2601,8 +2599,7 @@ declare namespace Deno { * @category I/O */ syncSync(): void; - /** **UNSTABLE**: New API, yet to be vetted. - * + /** * Flushes any pending data operations of the given file stream to disk. * ```ts * using file = await Deno.open( @@ -2617,8 +2614,7 @@ declare namespace Deno { * @category I/O */ syncData(): Promise; - /** **UNSTABLE**: New API, yet to be vetted. - * + /** * Synchronously flushes any pending data operations of the given file stream * to disk. * -- cgit v1.2.3