Skip to content

Instantly share code, notes, and snippets.

@mxth
mxth / inject.ts
Last active January 11, 2016 23:37
Simple injection decorator for AngularJS
interface InjectableConstructor extends Function {
$name: string;
}
export class Injectable {
__injectArgs;
constructor(args: IArguments) {
this.__injectArgs = Array.prototype.slice.call(args);
}
}