TypeScript/tests/cases/compiler/addMoreOverloadsToBaseSignature.ts

8 lines
101 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
interface Foo {
f(): string;
}
interface Bar extends Foo {
f(key: string): string;
}