Sample code:
type TestFn<T> = (v:T, k:string) => void;
function runTest<T, TT extends {[key:string]:T}>(p_obj:TT, pp:TestFn<T>) { }
var Map:{[key:string]:string[]} = {};
runTest(Map, function(v, k) {});
This code parameter v is {} but should be string[] like java does
see attached images
-
This topic was modified 7 years, 8 months ago by gorand. Reason: add image
Attachments:
You must be
logged in to view attached files.