##// END OF EJS Templates
Added tag v1.4.0-rc3 for changeset be7edf08a115
Added tag v1.4.0-rc3 for changeset be7edf08a115

File last commit:

r142:be7edf08a115 v1.4.0-rc3 default
r143:6e598d2020f6 default
Show More
services.ts
22 lines | 336 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;
}