angular-annotation-decorator
v1.0.0
Published
ES7 decorator for adding $inject annotations for Angular 1.x
Downloads
4
Maintainers
Readme
angular-annotation-decorator
ES7 decorator for adding $inject annotations for Angular 1.x.
Installing
npm install angular-annotation-decorator
Usage
import {annotate} from 'angular-annotation-decorator';
@annotate('$http', '$q')
class MyService {
constructor ($http, $q) {
//
}
}
You'll need to use an ESNext transpiler like Babel and enable the experimental es7.decorators
transformer.