DEBSOURCES
Skip Quicknav
sources / node-typescript / 2.1.5-1~bpo8%2B1 / tests / cases / compiler / addMoreCallSignaturesToBaseSignature.ts
12345678910
interface Foo { (): string; } interface Bar extends Foo { (key: string): string; } var a: Bar; var kitty = a();