##// END OF EJS Templates
configuration interfaces moved to di/Configuration module...
configuration interfaces moved to di/Configuration module ActivationType converted to string literals Working on annotations

File last commit:

r118:6738ac4c3072 ioc ts support
r118:6738ac4c3072 ioc ts support
Show More
config.ts
27 lines | 364 B | video/mp2t | TypeScriptLexer
cin
dependency builder proposal
r110 import { Foo } from "./Foo";
import { Bar } from "./Bar";
import { Box } from "./Box";
cin
configuration interfaces moved to di/Configuration module...
r118 import { Builder } from "../di/Annotations";
cin
Working on IoC container configuration
r111
cin
sync
r116 interface Services {
cin
dependency builder proposal
r110 foo: Foo;
bar: Bar;
cin
sync
r116 box: Box<Foo>;
host: string;
cin
dependency builder proposal
r110
cin
sync
r116 }
cin
dependency builder proposal
r110
cin
configuration interfaces moved to di/Configuration module...
r118 const services = {
build: <T>() => {
return new Builder<T, Services>();
}
};
cin
sync
r116
cin
configuration interfaces moved to di/Configuration module...
r118 namespace services {
cin
dependency builder proposal
r110
cin
sync
r116 }
cin
Working on IoC container configuration
r111
cin
configuration interfaces moved to di/Configuration module...
r118 export = services;