Skip to main content
Module

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

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

Methods

Resolves to the current status of a permission.

const status = await Deno.permissions.query({ name: "read", path: "/etc" });
console.log(status.state);

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

Revokes a permission, and resolves to the state of the permission.

import { assert } from "https://deno.land/std/testing/asserts.ts";

const status = await Deno.permissions.revoke({ name: "run" });
assert(status.state !== "granted")