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?
I'd write it this way (with generics as a bonus):
function instantiate<T>(ctor: { new(...args: any[]): T }): T {
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With