File tree Expand file tree Collapse file tree
tests/baselines/reference/api Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1392,6 +1392,10 @@ declare namespace ts {
13921392 name : Identifier ;
13931393 }
13941394 type ImportOrExportSpecifier = ImportSpecifier | ExportSpecifier ;
1395+ /**
1396+ * This is either an `export =` or an `export default` declaration.
1397+ * Unless `isExportEquals` is set, this node was parsed as an `export default`.
1398+ */
13951399 interface ExportAssignment extends DeclarationStatement {
13961400 kind : SyntaxKind . ExportAssignment ;
13971401 parent ?: SourceFile ;
Original file line number Diff line number Diff line change @@ -1392,6 +1392,10 @@ declare namespace ts {
13921392 name : Identifier ;
13931393 }
13941394 type ImportOrExportSpecifier = ImportSpecifier | ExportSpecifier ;
1395+ /**
1396+ * This is either an `export =` or an `export default` declaration.
1397+ * Unless `isExportEquals` is set, this node was parsed as an `export default`.
1398+ */
13951399 interface ExportAssignment extends DeclarationStatement {
13961400 kind : SyntaxKind . ExportAssignment ;
13971401 parent ?: SourceFile ;
You can’t perform that action at this time.
0 commit comments