##// END OF EJS Templates
Rewritten safe::debounce
Rewritten safe::debounce

File last commit:

r144:f97a113c3209 v1.4.0-rc4 default
r163:4031b379ac68 v1.4.1 default
Show More
services.ts
26 lines | 384 B | video/mp2t | TypeScriptLexer
cin
configuration draft-1
r119 import { Foo } from "./Foo";
cin
added provided and configure methods to the fluent container configuration, added applyConfig method to the container
r142 import { Box } from "./Box";
cin
configuration draft-1
r119 import { Bar } from "./Bar";
/**
* Сервисы доступные внутри контейнера
*/
export interface Services {
foo: Foo;
cin
tests
r136 box: Box<Foo>;
cin
configuration draft-1
r119
host: string;
}
cin
added provided and configure methods to the fluent container configuration, added applyConfig method to the container
r142
export interface ChildServices extends Services {
foo2?: Foo;
bar: Bar;
}
cin
Fixed container interfaces, separated ServiceContainer
r144
export interface FooServices {
foo: Foo;
}