class Deno.PermissionStatus
extends EventTarget
import { Deno } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.ns.d.ts";
const { PermissionStatus } = Deno;
An EventTarget
returned from the Deno.permissions
API which can provide updates to any state changes of the permission.
Properties
onchange: ((this: PermissionStatus, ev: Event) => any) | null
Describes if permission is only granted partially, eg. an access
might be granted to "/foo" directory, but denied for "/foo/bar".
In such case this field will be set to true
when querying for
read permissions of "/foo" directory.
readonly
state: PermissionStateMethods
addEventListener<K extends keyof PermissionStatusEventMap>(): void
type: K,
listener: (this: PermissionStatus, ev: PermissionStatusEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
addEventListener(): void
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
removeEventListener<K extends keyof PermissionStatusEventMap>(): void
type: K,
listener: (this: PermissionStatus, ev: PermissionStatusEventMap[K]) => any,
options?: boolean | EventListenerOptions,
removeEventListener(): void