TypeScript/tests/baselines/reference/contextualTypingOfLambdaWithMultipleSignatures.js
2014-07-12 17:30:19 -07:00

14 lines
280 B
JavaScript

//// [contextualTypingOfLambdaWithMultipleSignatures.ts]
interface Foo {
getFoo(n: number): void;
getFoo(s: string): void;
}
var foo: Foo;
foo.getFoo = bar => { };
//// [contextualTypingOfLambdaWithMultipleSignatures.js]
var foo;
foo.getFoo = function (bar) {
};