summaryrefslogtreecommitdiff
path: root/js/libdeno.ts
diff options
context:
space:
mode:
Diffstat (limited to 'js/libdeno.ts')
-rw-r--r--js/libdeno.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/js/libdeno.ts b/js/libdeno.ts
index c61027324..5448165a1 100644
--- a/js/libdeno.ts
+++ b/js/libdeno.ts
@@ -1,5 +1,4 @@
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
-import { RawSourceMap } from "./types";
import { globalEval } from "./global_eval";
// The libdeno functions are moved so that users can't access them.
@@ -39,9 +38,6 @@ interface Libdeno {
) => void;
setPromiseErrorExaminer: (handler: () => boolean) => void;
-
- mainSource: string;
- mainSourceMap: RawSourceMap;
}
const window = globalEval("this");