services.ts
22 lines
| 336 B
| video/mp2t
|
TypeScriptLexer
|
|
r119 | import { Foo } from "./Foo"; | ||
|
|
r142 | import { Box } from "./Box"; | ||
|
|
r119 | import { Bar } from "./Bar"; | ||
| /** | ||||
| * Сервисы доступные внутри контейнера | ||||
| */ | ||||
| export interface Services { | ||||
| foo: Foo; | ||||
|
|
r136 | box: Box<Foo>; | ||
|
|
r119 | |||
| host: string; | ||||
| } | ||||
|
|
r142 | |||
| export interface ChildServices extends Services { | ||||
| foo2?: Foo; | ||||
| bar: Bar; | ||||
| } | ||||
