diff options
author | Simon Menke <simon.menke@gmail.com> | 2019-03-04 17:04:19 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-04 11:04:19 -0500 |
commit | 77d7ad61f39641b79a60a99da2f939cbc1d8fe39 (patch) | |
tree | 3bc46c49b0007fb83c435d6cf417dd0f844d947c /js/deno.ts | |
parent | 048a8a77753881936d7c6b32f4534ee364eb42ad (diff) |
Allow inspection and revocation of permissions (#1875)
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/js/deno.ts b/js/deno.ts index 66d7d796c..d13ca81dd 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -50,6 +50,12 @@ export { symlinkSync, symlink } from "./symlink"; export { writeFileSync, writeFile, WriteFileOptions } from "./write_file"; export { ErrorKind, DenoError } from "./errors"; export { libdeno } from "./libdeno"; +export { + permissions, + revokePermission, + Permission, + Permissions +} from "./permissions"; export { platform } from "./platform"; export { truncateSync, truncate } from "./truncate"; export { FileInfo } from "./file_info"; |