File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed
tests/baselines/reference/api Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -2220,6 +2220,10 @@ namespace ts {
2220
2220
2221
2221
export type ImportOrExportSpecifier = ImportSpecifier | ExportSpecifier ;
2222
2222
2223
+ /**
2224
+ * This is either an `export =` or an `export default` declaration.
2225
+ * Unless `isExportEquals` is set, this node was parsed as an `export default`.
2226
+ */
2223
2227
export interface ExportAssignment extends DeclarationStatement {
2224
2228
kind : SyntaxKind . ExportAssignment ;
2225
2229
parent ?: SourceFile ;
Original file line number Diff line number Diff line change @@ -1412,6 +1412,10 @@ declare namespace ts {
1412
1412
name : Identifier ;
1413
1413
}
1414
1414
type ImportOrExportSpecifier = ImportSpecifier | ExportSpecifier ;
1415
+ /**
1416
+ * This is either an `export =` or an `export default` declaration.
1417
+ * Unless `isExportEquals` is set, this node was parsed as an `export default`.
1418
+ */
1415
1419
interface ExportAssignment extends DeclarationStatement {
1416
1420
kind : SyntaxKind . ExportAssignment ;
1417
1421
parent ?: SourceFile ;
Original file line number Diff line number Diff line change @@ -1412,6 +1412,10 @@ declare namespace ts {
1412
1412
name : Identifier ;
1413
1413
}
1414
1414
type ImportOrExportSpecifier = ImportSpecifier | ExportSpecifier ;
1415
+ /**
1416
+ * This is either an `export =` or an `export default` declaration.
1417
+ * Unless `isExportEquals` is set, this node was parsed as an `export default`.
1418
+ */
1415
1419
interface ExportAssignment extends DeclarationStatement {
1416
1420
kind : SyntaxKind . ExportAssignment ;
1417
1421
parent ?: SourceFile ;
You can’t perform that action at this time.
0 commit comments