TypeScript/tests/cases/compiler/typeParameterFixingWithConstraints.ts
2015-03-13 18:36:16 -07:00

10 lines
238 B
TypeScript

interface IBar {
[barId: string]: any;
}
interface IFoo {
foo<TBar extends IBar>(bar: TBar, bar1: (bar: TBar) => TBar, bar2: (bar: TBar) => TBar): TBar;
}
var foo: IFoo;
foo.foo({ bar: null }, bar => null, bar => null);