File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
tests/baselines/reference/api Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -1392,6 +1392,10 @@ declare namespace ts {
1392
1392
name : Identifier ;
1393
1393
}
1394
1394
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
+ */
1395
1399
interface ExportAssignment extends DeclarationStatement {
1396
1400
kind : SyntaxKind . ExportAssignment ;
1397
1401
parent ?: SourceFile ;
Original file line number Diff line number Diff line change @@ -1392,6 +1392,10 @@ declare namespace ts {
1392
1392
name : Identifier ;
1393
1393
}
1394
1394
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
+ */
1395
1399
interface ExportAssignment extends DeclarationStatement {
1396
1400
kind : SyntaxKind . ExportAssignment ;
1397
1401
parent ?: SourceFile ;
You can’t perform that action at this time.
0 commit comments