TypeScript/tests/baselines/reference/functionOverloadsOnGenericArity2.js
2014-07-12 17:30:19 -07:00

9 lines
201 B
TypeScript

//// [functionOverloadsOnGenericArity2.ts]
interface I {
then(p: string): string;
then<U>(p: string): string;
then<U, T>(p: string): Date;
}
//// [functionOverloadsOnGenericArity2.js]