summaryrefslogtreecommitdiff
path: root/js/deno.ts
diff options
context:
space:
mode:
Diffstat (limited to 'js/deno.ts')
-rw-r--r--js/deno.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/js/deno.ts b/js/deno.ts
index d663ca55c..ed42dc89a 100644
--- a/js/deno.ts
+++ b/js/deno.ts
@@ -49,7 +49,6 @@ export { statSync, lstatSync, stat, lstat } from "./stat";
export { symlinkSync, symlink } from "./symlink";
export { writeFileSync, writeFile, WriteFileOptions } from "./write_file";
export { ErrorKind, DenoError } from "./errors";
-export { libdeno } from "./libdeno";
export {
permissions,
revokePermission,
@@ -67,6 +66,11 @@ export { build, platform, OperatingSystem, Arch } from "./build";
export { version } from "./version";
export const args: string[] = [];
+// These are internal Deno APIs. We are marking them as internal so they do not
+// appear in the runtime type library.
+/** @internal */
+export { core } from "./core";
+
// TODO Don't expose Console nor stringifyArgs.
/** @internal */
export { Console, stringifyArgs } from "./console";