Skip to main content
method Deno.Permissions.prototype.request

Requests the permission, and resolves to the state of the permission.

const status = await Deno.permissions.request({ name: "env" });
if (status.state === "granted") {
  console.log("'env' permission is granted.");
} else {
  console.log("'env' permission is denied.");
}