From d1d5cac9002636214aed8d8811804fddeed2e993 Mon Sep 17 00:00:00 2001 From: Kanchalai Tanglertsampan Date: Thu, 6 Apr 2017 09:01:20 -0700 Subject: [PATCH] Address PR: Remove duplication --- src/compiler/types.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/compiler/types.ts b/src/compiler/types.ts index 0b51f7e2173..ddb32e284f8 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -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; }