UNPKG

ts.di

Version:

Typescript写的依赖注入库。An dependency-injection library for TypeScript.

13 lines (11 loc) 296 B
/** * Created by Weizehua on 2017/1/17. */ import {Singleton, Inject} from "../src/Injector"; import {LoopDependencyA} from "./loop_dependency_a" @Singleton() export class LoopDependencySingleton { val = Math.random() @Inject(()=> LoopDependencyA) a:LoopDependencyA; }