diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-09-24 22:46:36 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-25 17:02:49 -0400 |
commit | b088b58f7664cbb2fcb1e12f8aa439d377f56d49 (patch) | |
tree | a3cd8a4e40e06c55c76d3465b4e11b8b85b88abb /js/deno.ts | |
parent | 4fd2b19f640d19e57511eb142b63e16c879ef6fd (diff) |
Add SetGlobalTimeout().
To be used for a timers implementation soon.
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 3bbda69e8..92ba5301d 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -15,4 +15,5 @@ export { ErrorKind, DenoError } from "./errors"; export { libdeno } from "./libdeno"; export { arch, platform } from "./platform"; export { trace } from "./trace"; +export { setGlobalTimeout } from "./timers"; export const args: string[] = []; |