Skip to main content
Module

x/netzo/deno.d.ts>Deno.Permissions#request

SDK for Netzo, the open Web platform to unify IoT devices, applications and services.
Go to Latest
method Deno.Permissions.prototype.request
import { Deno } from "https://deno.land/x/netzo@v0.1.10/deno.d.ts";
const { Permissions } = Deno;

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.");
}