TypeScript/tests/baselines/reference/functionOverloadsOnGenericArity2.js

9 lines
201 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [functionOverloadsOnGenericArity2.ts]
interface I {
then(p: string): string;
then<U>(p: string): string;
then<U, T>(p: string): Date;
}
//// [functionOverloadsOnGenericArity2.js]