summaryrefslogtreecommitdiff
path: root/cli/tsc
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tsc')
-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.
*