diff options
-rw-r--r-- | cli/dts/lib.deno.ns.d.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts index 99ce225f1..02f514673 100644 --- a/cli/dts/lib.deno.ns.d.ts +++ b/cli/dts/lib.deno.ns.d.ts @@ -117,10 +117,10 @@ declare namespace Deno { export type PermissionOptions = "inherit" | "none" | PermissionOptionsObject; export interface PermissionOptionsObject { - /** Specifies if the `net` permission should be requested or revoked. + /** Specifies if the `env` permission should be requested or revoked. * If set to `"inherit"`, the current `env` permission will be inherited. - * If set to `true`, the global `net` permission will be requested. - * If set to `false`, the global `net` permission will be revoked. + * If set to `true`, the global `env` permission will be requested. + * If set to `false`, the global `env` permission will be revoked. * * Defaults to `false`. */ |