##// END OF EJS Templates
fixed safe.mixin typings
fixed safe.mixin typings

File last commit:

r136:17c7de5d346c ioc ts support
r140:93d9db76884e v1.4.0-rc2 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;
}