// @target: ES5 // @declaration: true // @removeComments: false // @module: commonjs // @Filename: declFileConstructSignatures_0.ts export interface IConstructSignature { /** This comment should appear for foo*/ new (): string; } export interface IConstructSignatureWithParameters { /** This is comment for function signature*/ new (/** this is comment about a*/a: string, /** this is comment for b*/ b: number); } export interface IConstructSignatureWithRestParameters { new (a: string, ...rests: string[]): string; } export interface IConstructSignatureWithOverloads { new (a: string): string; new (a: number): number; } export interface IConstructSignatureWithTypeParameters { /** This comment should appear for foo*/ new (a: T): T; } export interface IConstructSignatureWithOwnTypeParametes { new (a: T): T; } // @Filename: declFileConstructSignatures_1.ts interface IGlobalConstructSignature { /** This comment should appear for foo*/ new (): string; } interface IGlobalConstructSignatureWithParameters { /** This is comment for function signature*/ new (/** this is comment about a*/a: string, /** this is comment for b*/ b: number); } interface IGlobalConstructSignatureWithRestParameters { new (a: string, ...rests: string[]): string; } interface IGlobalConstructSignatureWithOverloads { new (a: string): string; new (a: number): number; } interface IGlobalConstructSignatureWithTypeParameters { /** This comment should appear for foo*/ new (a: T): T; } interface IGlobalConstructSignatureWithOwnTypeParametes { new (a: T): T; }