##// END OF EJS Templates
tests
tests

File last commit:

r136:17c7de5d346c ioc ts support
r136:17c7de5d346c ioc ts support
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")))
});