Document 'ExportAssignment' slightly.

This commit is contained in:
Daniel Rosenwasser
2018-02-16 01:17:45 -08:00
parent 02e79849ef
commit 06286e760a

View File

@@ -2199,6 +2199,10 @@ namespace ts {
export type ImportOrExportSpecifier = ImportSpecifier | ExportSpecifier;
/**
* This is either an `export =` or an `export default` declaration.
* Unless `isExportEquals` is set, this node was parsed as an `export default`.
*/
export interface ExportAssignment extends DeclarationStatement {
kind: SyntaxKind.ExportAssignment;
parent?: SourceFile;