diff options
Diffstat (limited to 'cli/js/lib.deno_runtime.d.ts')
-rw-r--r-- | cli/js/lib.deno_runtime.d.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cli/js/lib.deno_runtime.d.ts b/cli/js/lib.deno_runtime.d.ts index a93ce466f..e667d497d 100644 --- a/cli/js/lib.deno_runtime.d.ts +++ b/cli/js/lib.deno_runtime.d.ts @@ -74,6 +74,8 @@ declare namespace Deno { /** * Returns the user and platform specific directories. * Requires the `--allow-env` flag. + * Returns null if there is no applicable directory or if any other error + * occurs. * * Argument values: "home", "cache", "config", "data", "data_local", "audio", * "desktop", "document", "download", "font", "picture", "public", "template", @@ -170,7 +172,7 @@ declare namespace Deno { * | macOS | `$HOME`/Movies | /Users/Alice/Movies | * | Windows | `{FOLDERID_Videos}` | C:\Users\Alice\Videos | */ - export function dir(kind: DirKind): string; + export function dir(kind: DirKind): string | null; /** * Returns the path to the current deno executable. |