@@ -362,31 +362,35 @@ export declare class c1 {
362
362
/** This comment should appear for foo*/
363
363
foo ( ) : void ;
364
364
/** This is comment for function signature*/
365
- fooWithParameters ( /** this is comment about a*/ a : string , /** this is comment for b*/
365
+ fooWithParameters ( /** this is comment about a*/ a : string ,
366
+ /** this is comment for b*/
366
367
b : number) : void ;
367
368
fooWithRestParameters ( a : string , ...rests : string [ ] ) : string ;
368
369
fooWithOverloads ( a : string ) : string ;
369
370
fooWithOverloads ( a : number ) : number ;
370
371
/** This comment should appear for privateFoo*/
371
372
private privateFoo ( ) ;
372
373
/** This is comment for function signature*/
373
- private privateFooWithParameters ( /** this is comment about a*/ a , /** this is comment for b*/
374
+ private privateFooWithParameters ( /** this is comment about a*/ a ,
375
+ /** this is comment for b*/
374
376
b ) ;
375
377
private privateFooWithRestParameters ( a , ...rests ) ;
376
378
private privateFooWithOverloads ( a ) ;
377
379
private privateFooWithOverloads ( a ) ;
378
380
/** This comment should appear for static foo*/
379
381
static staticFoo ( ) : void ;
380
382
/** This is comment for function signature*/
381
- static staticFooWithParameters ( /** this is comment about a*/ a : string , /** this is comment for b*/
383
+ static staticFooWithParameters ( /** this is comment about a*/ a : string ,
384
+ /** this is comment for b*/
382
385
b : number ) : void ;
383
386
static staticFooWithRestParameters ( a : string , ...rests : string [ ] ) : string ;
384
387
static staticFooWithOverloads ( a : string ) : string ;
385
388
static staticFooWithOverloads ( a : number ) : number ;
386
389
/** This comment should appear for privateStaticFoo*/
387
390
private static privateStaticFoo ( ) ;
388
391
/** This is comment for function signature*/
389
- private static privateStaticFooWithParameters ( /** this is comment about a*/ a , /** this is comment for b*/
392
+ private static privateStaticFooWithParameters ( /** this is comment about a*/ a ,
393
+ /** this is comment for b*/
390
394
b ) ;
391
395
private static privateStaticFooWithRestParameters ( a , ...rests ) ;
392
396
private static privateStaticFooWithOverloads ( a ) ;
@@ -396,7 +400,8 @@ export interface I1 {
396
400
/** This comment should appear for foo*/
397
401
foo ( ) : string ;
398
402
/** This is comment for function signature*/
399
- fooWithParameters ( /** this is comment about a*/ a : string , /** this is comment for b*/
403
+ fooWithParameters ( /** this is comment about a*/ a : string ,
404
+ /** this is comment for b*/
400
405
b : number ) : void ;
401
406
fooWithRestParameters ( a : string , ...rests : string [ ] ) : string ;
402
407
fooWithOverloads ( a : string ) : string ;
@@ -407,31 +412,35 @@ declare class c2 {
407
412
/** This comment should appear for foo*/
408
413
foo ( ) : void ;
409
414
/** This is comment for function signature*/
410
- fooWithParameters ( /** this is comment about a*/ a : string , /** this is comment for b*/
415
+ fooWithParameters ( /** this is comment about a*/ a : string ,
416
+ /** this is comment for b*/
411
417
b : number ) : void ;
412
418
fooWithRestParameters ( a : string , ...rests : string [ ] ) : string ;
413
419
fooWithOverloads ( a : string ) : string ;
414
420
fooWithOverloads ( a : number ) : number ;
415
421
/** This comment should appear for privateFoo*/
416
422
private privateFoo ( ) ;
417
423
/** This is comment for function signature*/
418
- private privateFooWithParameters ( /** this is comment about a*/ a , /** this is comment for b*/
424
+ private privateFooWithParameters ( /** this is comment about a*/ a ,
425
+ /** this is comment for b*/
419
426
b ) ;
420
427
private privateFooWithRestParameters ( a , ...rests ) ;
421
428
private privateFooWithOverloads ( a ) ;
422
429
private privateFooWithOverloads ( a ) ;
423
430
/** This comment should appear for static foo*/
424
431
static staticFoo ( ) : void ;
425
432
/** This is comment for function signature*/
426
- static staticFooWithParameters ( /** this is comment about a*/ a : string , /** this is comment for b*/
433
+ static staticFooWithParameters ( /** this is comment about a*/ a : string ,
434
+ /** this is comment for b*/
427
435
b : number ) : void ;
428
436
static staticFooWithRestParameters ( a : string , ...rests : string [ ] ) : string ;
429
437
static staticFooWithOverloads ( a : string ) : string ;
430
438
static staticFooWithOverloads ( a : number ) : number ;
431
439
/** This comment should appear for privateStaticFoo*/
432
440
private static privateStaticFoo ( ) ;
433
441
/** This is comment for function signature*/
434
- private static privateStaticFooWithParameters ( /** this is comment about a*/ a , /** this is comment for b*/
442
+ private static privateStaticFooWithParameters ( /** this is comment about a*/ a ,
443
+ /** this is comment for b*/
435
444
b ) ;
436
445
private static privateStaticFooWithRestParameters ( a , ...rests ) ;
437
446
private static privateStaticFooWithOverloads ( a ) ;
@@ -441,7 +450,8 @@ interface I2 {
441
450
/** This comment should appear for foo*/
442
451
foo ( ) : string ;
443
452
/** This is comment for function signature*/
444
- fooWithParameters ( /** this is comment about a*/ a : string , /** this is comment for b*/
453
+ fooWithParameters ( /** this is comment about a*/ a : string ,
454
+ /** this is comment for b*/
445
455
b : number ) : void ;
446
456
fooWithRestParameters ( a : string , ...rests : string [ ] ) : string ;
447
457
fooWithOverloads ( a : string ) : string ;
0 commit comments