Skip to main content
Module

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

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

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")