##// END OF EJS Templates
Added tag v1.4.0-rc1 for changeset a2fb9af6341c
Added tag v1.4.0-rc1 for changeset a2fb9af6341c

File last commit:

r136:17c7de5d346c ioc ts support
r139:f7ed6a66cdbb default
Show More
config.ts
14 lines | 372 B | video/mp2t | TypeScriptLexer
import { Services } from "./services";
import { fluent } from "../di/traits";
import { Box } from "./Box";
export default fluent<Services>().register({
host: it => it.value("example.com"),
foo: it => import("./Foo").then(({ Foo }) => it
.factory(() => new Foo())
),
box: it => it
.factory($dependency => new Box($dependency("foo")))
});