Address PR: Remove duplication

This commit is contained in:
Kanchalai Tanglertsampan
2017-04-06 09:01:20 -07:00
parent 78b8275ab6
commit d1d5cac900

View File

@@ -1,4 +1,4 @@
namespace ts {
namespace ts {
/**
* Type of objects whose values are all of the same type.
* The `in` and `for-in` operators can *not* be safely used,
@@ -1451,10 +1451,6 @@ namespace ts {
expression: SuperExpression;
}
export interface ImportExpression extends PrimaryExpression {
kind: SyntaxKind.ImportKeyword;
}
export interface ImportCall extends CallExpression {
expression: ImportExpression;
}