diff options
author | Andy Finch <andyfinch7@gmail.com> | 2019-12-05 15:30:20 -0500 |
---|---|---|
committer | Ry Dahl <ry@tinyclouds.org> | 2019-12-05 15:30:20 -0500 |
commit | 7c3b9b4f4f2f4ec8fdeb0e77bb853fd22ffaa476 (patch) | |
tree | aeafe5cc2560c5366704d7a580a5b0e0dced504d /cli/js/deno.ts | |
parent | 214b3eb29aa9cce8a55a247b4bd816cbd19bfe6b (diff) |
feat: first pass at native plugins (#3372)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index 6f07bef67..27a7bb3bd 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -76,6 +76,7 @@ export { } from "./permissions.ts"; export { truncateSync, truncate } from "./truncate.ts"; export { FileInfo } from "./file_info.ts"; +export { openPlugin } from "./plugins.ts"; export { connect, dial, listen, Listener, Conn } from "./net.ts"; export { dialTLS, listenTLS } from "./tls.ts"; export { metrics, Metrics } from "./metrics.ts"; |