Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions cli/tsc/dts/lib.deno.ns.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2639,7 +2639,8 @@ declare namespace Deno {
* await Deno.mkdir("restricted_access_dir", { mode: 0o700 });
* ```
*
* Defaults to throwing error if the directory already exists.
* Throws if the directory already exists, unless `recursive` is set to
* `true`.
*
* Requires `allow-write` permission.
*
Expand All @@ -2659,7 +2660,8 @@ declare namespace Deno {
* Deno.mkdirSync("restricted_access_dir", { mode: 0o700 });
* ```
*
* Defaults to throwing error if the directory already exists.
* Throws if the directory already exists, unless `recursive` is set to
* `true`.
*
* Requires `allow-write` permission.
*
Expand Down