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

File last commit:

r127:850cc60b6e2a ioc ts support
r128:882b53b2ba5b ioc ts support
Show More
Annotations.ts
25 lines | 743 B | video/mp2t | TypeScriptLexer
import { TypeRegistration } from "./Configuration";
import { ExtractDependency } from "./fluent/interfaces";
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();
}
}