Module

std/permissions/mod.ts>grantOrThrow

The Deno Standard Library
Latest
function grantOrThrow
Deprecated
Deprecated

Use the Deno Permissions API directly instead. This module will be removed once the Standard Library migrates to JSR.

import { grantOrThrow } from "https://dotland.deno.dev/std@0.224.0/permissions/mod.ts";

Attempts to grant a set of permissions or rejects.

     import { grantOrThrow } from "https://deno.land/std@0.224.0/permissions/mod.ts";
     await grantOrThrow({ name: "env" }, { name: "net" });

If the permission can be prompted for, the function will attempt to prompt. If any of the permissions are denied, the function will reject for the first permission that is denied. If all permissions are granted, the function will resolve.

Parameters

...descriptors: Deno.PermissionDescriptor[]

Returns

Promise<void>

Attempts to grant a set of permissions or rejects.

     import { grantOrThrow } from "https://deno.land/std@0.224.0/permissions/mod.ts";
     await grantOrThrow([{ name: "env" }, { name: "net" }]);

If the permission can be prompted for, the function will attempt to prompt. If any of the permissions are denied, the function will reject mentioning the the denied permissions. If all permissions are granted, the function will resolve.

Parameters

descriptors: Deno.PermissionDescriptor[]

Returns

Promise<void>