diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2019-10-28 00:22:53 +0900 |
---|---|---|
committer | Ry Dahl <ry@tinyclouds.org> | 2019-10-27 11:22:53 -0400 |
commit | efd7e78af3fc086dfdec51738905665d38d08eb4 (patch) | |
tree | bb921f7d960f33c6d4d13c043a7a45ebe74290ba /cli/js/deno.ts | |
parent | 2598f9c68d8983934c73c135c9d277b33c98e333 (diff) |
Use web standard Permissions API (#3200)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index 4b0e3ff96..cac730249 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -68,8 +68,9 @@ export { applySourceMap } from "./error_stack.ts"; export { ErrorKind, DenoError } from "./errors.ts"; export { permissions, - revokePermission, - Permission, + PermissionName, + PermissionState, + PermissionStatus, Permissions } from "./permissions.ts"; export { truncateSync, truncate } from "./truncate.ts"; |