From c43cfedeba5d6ac96e1b1febed8549e750606e3f Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Tue, 26 Mar 2019 23:22:07 +1100 Subject: namespace reorg: libdeno and DenoCore to Deno.core (#1998) --- js/deno.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'js/deno.ts') 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"; -- cgit v1.2.3