summaryrefslogtreecommitdiff
path: root/cli/js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js')
-rw-r--r--cli/js/lib.deno.unstable.d.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/cli/js/lib.deno.unstable.d.ts b/cli/js/lib.deno.unstable.d.ts
index da3c65143..20096cb28 100644
--- a/cli/js/lib.deno.unstable.d.ts
+++ b/cli/js/lib.deno.unstable.d.ts
@@ -1086,7 +1086,8 @@ declare namespace Deno {
/** **UNSTABLE**: The URL of the file that was originally executed from the command-line. */
export const mainModule: string;
- /** Synchronously truncates or extends the specified file stream, to reach the
+ /** **UNSTABLE**: new API, yet to be vetted.
+ * Synchronously truncates or extends the specified file stream, to reach the
* specified `len`. If `len` is not specified then the entire file contents
* are truncated.
*
@@ -1106,7 +1107,8 @@ declare namespace Deno {
*/
export function ftruncateSync(rid: number, len?: number): void;
- /** Truncates or extends the specified file stream, to reach the specified `len`. If
+ /** **UNSTABLE**: new API, yet to be vetted.
+ * Truncates or extends the specified file stream, to reach the specified `len`. If
* `len` is not specified then the entire file contents are truncated.
*
* ```ts