diff options
Diffstat (limited to 'js/globals.ts')
-rw-r--r-- | js/globals.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/js/globals.ts b/js/globals.ts index 4f2d53147..2c8a25be3 100644 --- a/js/globals.ts +++ b/js/globals.ts @@ -28,7 +28,6 @@ import * as workers from "./workers"; import * as performanceUtil from "./performance"; import * as request from "./request"; -//import * as response from "./response"; // These imports are not exposed and therefore are fine to just import the // symbols required. @@ -120,8 +119,8 @@ export type TextDecoder = textEncoding.TextDecoder; window.Request = request.Request as domTypes.RequestConstructor; export type Request = domTypes.Request; -//window.Response = response.Response; -//export type Response = response.Response; +window.Response = fetchTypes.Response; +export type Response = domTypes.Response; window.performance = new performanceUtil.Performance(); |