Deno.Permissions.prototype.requestSync - Deno documentation
method Deno.Permissions.prototype.requestSync
Permissions.prototype.requestSync(desc: PermissionDescriptor): PermissionStatus

Requests the permission, and returns the state of the permission.

If the permission is already granted, the user will not be prompted to grant the permission again.

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

Parameters

Return Type