1.0.0 • Published 9 years ago

angular-annotation-decorator v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

angular-annotation-decorator Build Status

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.