TypeScript/tests/baselines/reference/assignmentCompatInterfaceWithStringIndexSignature.errors.txt
2014-07-24 19:39:50 -07:00

19 lines
469 B
Plaintext

==== tests/cases/compiler/assignmentCompatInterfaceWithStringIndexSignature.ts (1 errors) ====
interface IHandler {
(e): boolean;
}
interface IHandlerMap {
[type: string]: IHandler;
}
class Foo {
public Boz(): void { }
}
function Biz(map: IHandlerMap) { }
Biz(new Foo());
~~~~~~~~~
!!! Argument of type 'Foo' is not assignable to parameter of type 'IHandlerMap'.