diff options
Diffstat (limited to 'cli/js/lib.deno.ns.d.ts')
-rw-r--r-- | cli/js/lib.deno.ns.d.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/js/lib.deno.ns.d.ts b/cli/js/lib.deno.ns.d.ts index 64e3613f5..4964f1b01 100644 --- a/cli/js/lib.deno.ns.d.ts +++ b/cli/js/lib.deno.ns.d.ts @@ -1562,6 +1562,8 @@ declare namespace Deno { /** Creates `newpath` as a hard link to `oldpath`. * + * **UNSTABLE**: needs security review. + * * await Deno.link("old/name", "new/name"); * * Requires `allow-read` and `allow-write` permissions. */ @@ -1569,6 +1571,8 @@ declare namespace Deno { /** **UNSTABLE**: `type` argument type may be changed to `"dir" | "file"`. * + * **UNSTABLE**: needs security review. + * * Creates `newpath` as a symbolic link to `oldpath`. * * The type argument can be set to `dir` or `file`. This argument is only @@ -1587,6 +1591,8 @@ declare namespace Deno { /** **UNSTABLE**: `type` argument may be changed to `"dir" | "file"` * + * **UNSTABLE**: needs security review. + * * Creates `newpath` as a symbolic link to `oldpath`. * * The type argument can be set to `dir` or `file`. This argument is only |