angular-docs-cn/modules/di/src/annotations.js
2014-10-06 15:03:05 -04:00

22 lines
302 B
JavaScript

import {CONST} from "facade/lang";
export class Inject {
@CONST()
constructor(token){
this.token = token;
}
}
export class InjectFuture {
@CONST()
constructor(token){
this.token = token;
}
}
export class InjectLazy {
@CONST()
constructor(token){
this.token = token;
}
}