##// END OF EJS Templates
working on fluent configuration, di annotations removed
working on fluent configuration, di annotations removed

File last commit:

r134:511bcc634d65 ioc ts support
r134:511bcc634d65 ioc ts support
Show More
services.ts
19 lines | 282 B | video/mp2t | TypeScriptLexer
cin
configuration draft-1
r119 import { Foo } from "./Foo";
import { Bar } from "./Bar";
import { Box } from "./Box";
/**
* Сервисы доступные внутри контейнера
*/
export interface Services {
foo: Foo;
bar: Bar;
cin
sync
r123 bar2: Bar;
cin
configuration draft-1
r119 box: Box<Bar>;
host: string;
}