Skip to content

v0.1.9

Compare
Choose a tag to compare
@PillowPillow PillowPillow released this 20 Aug 18:19
· 72 commits to master since this release

0.1.9 (2015-08-12)

Bugfix:

now supports correctly the bindings without second parameter

import {controller, inject} from 'node_modules/ng-annotations';
import MyFactory from './myFactory';

@controller()
@inject(MyFactory)
export default class MyCtrl {
    @attach(MyFactory)
    factory;
}