Skip to content

Commit 1b3e6a0

Browse files
Accepted baselines.
1 parent 06286e7 commit 1b3e6a0

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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;

tests/baselines/reference/api/typescript.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)