##// END OF EJS Templates
working on fluent configuration
working on fluent configuration

File last commit:

r132:0866c6259285 ioc ts support
r132:0866c6259285 ioc ts support
Show More
ConstructorBuiler.ts
17 lines | 369 B | video/mp2t | TypeScriptLexer
/ src / main / ts / di / fluent / ConstructorBuiler.ts
import { RegistrationBuilder } from "./RegistrationBuilder";
export class ConstructorBuilder<C extends new (...args: any[]) => any, S extends object>
extends RegistrationBuilder<InstanceType<C>, S> {
$type: C;
_params: any;
constructor(target: C, params: any) {
super();
this.$type = target;
this._params = params;
}
}