diff options
author | Bartek Iwańczuk <biwanczuk@gmail.com> | 2020-07-13 18:23:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-13 18:23:24 +0200 |
commit | 11560387bb056098c55049db22c63550358c953a (patch) | |
tree | eb3a4704c2ee7f2ae36a035833e1b1962a594ba0 /cli/js/deno_unstable.ts | |
parent | 44187c81f4a09dbec0ca83b91e5f378590c93cff (diff) |
Revert "feat: move unstable Deno.permissions to navigator.permissions… (#6729)
* Revert "feat: move unstable Deno.permissions to navigator.permissions (#6244)"
This reverts commit 202e7fa6ad366ee56a6d070e94eaecb6dbc745bf.
Diffstat (limited to 'cli/js/deno_unstable.ts')
-rw-r--r-- | cli/js/deno_unstable.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/js/deno_unstable.ts b/cli/js/deno_unstable.ts index f92d767b3..6e334e223 100644 --- a/cli/js/deno_unstable.ts +++ b/cli/js/deno_unstable.ts @@ -19,6 +19,9 @@ export { shutdown, ShutdownMode } from "./net.ts"; export { listen, listenDatagram, connect } from "./net_unstable.ts"; export { startTls } from "./tls.ts"; export { kill } from "./ops/process.ts"; +export { permissions, Permissions } from "./permissions.ts"; +export { PermissionStatus } from "./permissions.ts"; +export type { PermissionName, PermissionState } from "./permissions.ts"; export { DiagnosticCategory } from "./diagnostics.ts"; export type { Diagnostic, |