File tree 2 files changed +2
-2
lines changed 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4621,7 +4621,7 @@ module ts {
4621
4621
// parse namespace or named imports
4622
4622
if ( ! importClause . defaultBinding ||
4623
4623
parseOptional ( SyntaxKind . CommaToken ) ) {
4624
- importClause . bindings = token === SyntaxKind . AsteriskToken ? parseNamespaceImport ( ) : parseNamedImports ( ) ;
4624
+ importClause . namedBindings = token === SyntaxKind . AsteriskToken ? parseNamespaceImport ( ) : parseNamedImports ( ) ;
4625
4625
}
4626
4626
4627
4627
parseExpected ( SyntaxKind . FromKeyword ) ;
Original file line number Diff line number Diff line change @@ -875,7 +875,7 @@ module ts {
875
875
876
876
export interface ImportClause extends Node {
877
877
defaultBinding ?: Identifier ;
878
- bindings ?: NamespaceImport | NamedImports ;
878
+ namedBindings ?: NamespaceImport | NamedImports ;
879
879
}
880
880
881
881
export interface NamespaceImport extends Declaration {
You can’t perform that action at this time.
0 commit comments