diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2019-02-19 08:43:02 +0900 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-18 18:43:02 -0500 |
commit | 55edc06218f080aa5ba83302d2642dabb599418e (patch) | |
tree | a1d5385df80d85ab1d0be96a2125cba9b218abe7 /js/deno.ts | |
parent | 077af20ceb0869ddff9e08f5db1055138450fe2e (diff) |
Add back typescript version number and add Deno.version object. (#1788)
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/deno.ts b/js/deno.ts index 490494cc6..66d7d796c 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -58,6 +58,7 @@ export { metrics, Metrics } from "./metrics"; export { resources } from "./resources"; export { run, RunOptions, Process, ProcessStatus } from "./process"; export { inspect } from "./console"; +export { version } from "./version"; export const args: string[] = []; // TODO Don't expose Console nor stringifyArgs. |