import { Foo } from "./Foo"; import { Bar } from "./Bar"; import { Box } from "./Box"; import { Builder } from "../di/Annotations"; interface Services { foo: Foo; bar: Bar; box: Box; host: string; } const services = { build: () => { return new Builder(); } }; namespace services { } export = services;