summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.deno.ns.d.ts
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-05-23 07:59:51 +1000
committerGitHub <noreply@github.com>2024-05-22 21:59:51 +0000
commit6c167c64d61ecfc912dc1b68d300f02aa3677235 (patch)
treee71da79aecb5ba8c8a24486ad9c0e52e8c70f693 /cli/tsc/dts/lib.deno.ns.d.ts
parentcbddf468e36aaa335d6c3da6b4da055b1afc3c18 (diff)
feat(ext/fs): stabilize `Deno.FsFile.syncData[Sync]()` and `Deno.FsFile.sync[Sync]()` (#23733)
Closes #22230
Diffstat (limited to 'cli/tsc/dts/lib.deno.ns.d.ts')
-rw-r--r--cli/tsc/dts/lib.deno.ns.d.ts12
1 files changed, 4 insertions, 8 deletions
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<void>;
- /** **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<void>;
- /** **UNSTABLE**: New API, yet to be vetted.
- *
+ /**
* Synchronously flushes any pending data operations of the given file stream
* to disk.
*