@@ -819,7 +819,7 @@ namespace ts {
819819 body ?: FunctionBody ;
820820 }
821821
822- /** For when we encounter a semicolon in a class declaration. ES6 allows these as class elements.*/
822+ /** For when we encounter a semicolon in a class declaration. ES6 allows these as class elements. */
823823 export interface SemicolonClassElement extends ClassElement {
824824 kind : SyntaxKind . SemicolonClassElement ;
825825 parent ?: ClassDeclaration | ClassExpression ;
@@ -1397,11 +1397,11 @@ namespace ts {
13971397 }
13981398
13991399 /**
1400- * This interface is a base interface for ObjectLiteralExpression and JSXAttributes to extend from. JSXAttributes is similar to
1401- * ObjectLiteralExpression in that it contains array of properties; however, JSXAttributes' properties can only be
1402- * JSXAttribute or JSXSpreadAttribute. ObjectLiteralExpression, on the other hand, can only have properties of type
1403- * ObjectLiteralElement (e.g. PropertyAssignment, ShorthandPropertyAssignment etc.)
1404- ** /
1400+ * This interface is a base interface for ObjectLiteralExpression and JSXAttributes to extend from. JSXAttributes is similar to
1401+ * ObjectLiteralExpression in that it contains array of properties; however, JSXAttributes' properties can only be
1402+ * JSXAttribute or JSXSpreadAttribute. ObjectLiteralExpression, on the other hand, can only have properties of type
1403+ * ObjectLiteralElement (e.g. PropertyAssignment, ShorthandPropertyAssignment etc.)
1404+ */
14051405 export interface ObjectLiteralExpressionBase < T extends ObjectLiteralElement > extends PrimaryExpression , Declaration {
14061406 properties : NodeArray < T > ;
14071407 }
@@ -2330,9 +2330,9 @@ namespace ts {
23302330 readDirectory ( rootDir : string , extensions : string [ ] , excludes : string [ ] , includes : string [ ] ) : string [ ] ;
23312331
23322332 /**
2333- * Gets a value indicating whether the specified path exists and is a file.
2334- * @param path The path to test.
2335- */
2333+ * Gets a value indicating whether the specified path exists and is a file.
2334+ * @param path The path to test.
2335+ */
23362336 fileExists ( path : string ) : boolean ;
23372337
23382338 readFile ( path : string ) : string ;
@@ -2680,8 +2680,7 @@ namespace ts {
26802680 errorModuleName ?: string ; // If the symbol is not visible from module, module's name
26812681 }
26822682
2683- /** Indicates how to serialize the name for a TypeReferenceNode when emitting decorator
2684- * metadata */
2683+ /** Indicates how to serialize the name for a TypeReferenceNode when emitting decorator metadata */
26852684 /* @internal */
26862685 export enum TypeReferenceSerializationKind {
26872686 Unknown , // The TypeReferenceNode could not be resolved. The type name
0 commit comments