I have a function that instantiates a object with a given constructor, passing along any arguments.
function instantiate(ctor:Function):any {
switch (arguments.length) {
case 1:
return new ctor();
case 2:
return new ctor(arguments[1]);
case 3:
return new ctor(arguments[1], arguments[2]);
...
default:
throw new Error('"instantiate" called with too many arguments.');
}
}
It is used like this:
export class Thing {
constructor() { ... }
}
var thing = instantiate(Thing);
This works, but the compiler complains about each new ctor instance, saying Cannot use 'new' with an expression whose type lacks a call or construct signature.. What type should ctor have?