diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-07-30 15:12:33 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-08-01 12:14:10 -0400 |
commit | db8dc0e9f8c739a07089ca8077d49cf9c902ddc4 (patch) | |
tree | a102b590f9d648b61ee5c68262c12dbee808415d /js/lib.deno.d.ts | |
parent | ae82db54f61d75be762f5c6abd60b820666b500f (diff) |
Better handling of exceptions during snapshot creation.
Diffstat (limited to 'js/lib.deno.d.ts')
-rw-r--r-- | js/lib.deno.d.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/lib.deno.d.ts b/js/lib.deno.d.ts index fd337abb0..81e8daf4e 100644 --- a/js/lib.deno.d.ts +++ b/js/lib.deno.d.ts @@ -27,8 +27,10 @@ declare class Console { interface Window { console: Console; + mainSource: string; // TODO(ry) This shouldn't be global. } // Globals in the runtime environment declare let console: Console; +declare let mainSource: string; // TODO(ry) This shouldn't be global. declare const window: Window; |