##// END OF EJS Templates
Added tag v1.4.0-rc5 for changeset f3f5c56d3b3e
Added tag v1.4.0-rc5 for changeset f3f5c56d3b3e

File last commit:

r144:f97a113c3209 v1.4.0-rc4 default
r147:2c6e9b70b3bb default
Show More
services.ts
26 lines | 384 B | video/mp2t | TypeScriptLexer
import { Foo } from "./Foo";
import { Box } from "./Box";
import { Bar } from "./Bar";
/**
* Сервисы доступные внутри контейнера
*/
export interface Services {
foo: Foo;
box: Box<Foo>;
host: string;
}
export interface ChildServices extends Services {
foo2?: Foo;
bar: Bar;
}
export interface FooServices {
foo: Foo;
}