DEBSOURCES
Skip Quicknav
sources / node-typescript / 3.3.3333-1 / 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"; }