##// END OF EJS Templates
Added tag v1.4.0-rc1 for changeset a2fb9af6341c
Added tag v1.4.0-rc1 for changeset a2fb9af6341c

File last commit:

r136:17c7de5d346c ioc ts support
r139:f7ed6a66cdbb default
Show More
services.ts
15 lines | 251 B | video/mp2t | TypeScriptLexer
import { Foo } from "./Foo";
import { Bar } from "./Bar";
import { Box } from "./Box";
/**
* Сервисы доступные внутри контейнера
*/
export interface Services {
foo: Foo;
box: Box<Foo>;
host: string;
}