diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-12-23 11:44:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-23 11:44:08 -0500 |
commit | 6cc998f28bb1cf119ca96bac385c7361bc1f7021 (patch) | |
tree | d5fb8f0da5c79fa14afc814ea85cf1c9134eb714 /js/file.ts | |
parent | bee55fcd20b4919f2d6b4817ce33d1a09e6bcadc (diff) |
Remove support for extensionless import (#1396)
Diffstat (limited to 'js/file.ts')
-rw-r--r-- | js/file.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/js/file.ts b/js/file.ts index 8496d6edb..6b5a4fbd0 100644 --- a/js/file.ts +++ b/js/file.ts @@ -1,8 +1,12 @@ // Copyright 2018 the Deno authors. All rights reserved. MIT license. +// TODO Rename this file to js/dom_file.ts it's currently too similarly named to +// js/files.ts + import * as domTypes from "./dom_types"; import * as blob from "./blob"; -export class DenoFile extends blob.DenoBlob implements domTypes.File { +// TODO Rename this to DomFileImpl +export class DenoFile extends blob.DenoBlob implements domTypes.DomFile { lastModified: number; name: string; |