DEBSOURCES
Skip Quicknav
sources / node-typescript / 2.1.5-1~bpo8%2B1 / tests / cases / compiler / assignToFn.ts
123456789
module M { interface I { f(n:number):boolean; } var x:I={ f:function(n) { return true; } }; x.f="hello"; }