TypeScript/tests/cases/compiler/functionOverloadsOnGenericArity2.ts
2014-07-12 17:30:19 -07:00

5 lines
113 B
TypeScript

interface I {
then(p: string): string;
then<U>(p: string): string;
then<U, T>(p: string): Date;
}