##// 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
Annotations.ts
30 lines | 903 B | video/mp2t | TypeScriptLexer
import { TypeRegistration } from "./Configuration";
import { ExtractDependency } from "./fluent/interfaces";
import { RegistrationBuilder } from "./fluent/RegistrationBuilder";
export class AnnotaionBuilder<T, S extends object> {
wire<P extends any[]>(...args: P) {
return <C extends new (...args: ExtractDependency<P, S>) => T>(constructor: C) => {
};
}
inject<P extends any[]>(...args: P) {
return <X extends { [m in M]: (...args: any) => any }, M extends keyof (T | X)>(
target: X,
memberName: M,
descriptor: TypedPropertyDescriptor< T[M] extends ((...args: ExtractDependency<P, S>) => any) ? any : never >
) => {
};
}
getDescriptor(): TypeRegistration<new () => T, S> {
throw new Error();
}
getRegistrationBuilder(): RegistrationBuilder<T, S> {
throw new Error();
}
}