summaryrefslogtreecommitdiff
path: root/js/globals.ts
diff options
context:
space:
mode:
authorTomohito Nakayama <nkym.tmht@gmail.com>2019-09-24 00:07:13 +0900
committerRyan Dahl <ry@tinyclouds.org>2019-09-23 11:07:13 -0400
commit4ff04ad96f27b7073e3478630ed249eedc76af2b (patch)
tree0f71ce209fe1c05b37e87e57d954df5d69d349f7 /js/globals.ts
parent97bb2bdb79cbd0a400c643e7be0029440cb15633 (diff)
Rename class name DenoFile to DomFileImpl (#3006)
Diffstat (limited to 'js/globals.ts')
-rw-r--r--js/globals.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/globals.ts b/js/globals.ts
index 1c84a17f5..50f119971 100644
--- a/js/globals.ts
+++ b/js/globals.ts
@@ -101,7 +101,7 @@ export type Blob = domTypes.Blob;
export type Body = domTypes.Body;
-window.File = domFile.DenoFile as domTypes.DomFileConstructor;
+window.File = domFile.DomFileImpl as domTypes.DomFileConstructor;
export type File = domTypes.DomFile;
export type CustomEventInit = domTypes.CustomEventInit;