##// 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
import { Foo } from "./Foo";
import { Bar } from "./Bar";
import { Box } from "./Box";
import { Builder } from "../di/Annotations";
interface Services {
foo: Foo;
bar: Bar;
box: Box<Foo>;
host: string;
}
const services = {
build: <T>() => {
return new Builder<T, Services>();
}
};
namespace services {
}
export = services;