angularjs-annotations
v1.0.3
Published
Angularjs Typescript annotations to mimic Angular syntax
Downloads
6
Maintainers
Readme
angularjs-annotations
Angularjs Typescript annotations to mimic Angular syntax.
Installation
npm install angularjs-annotations --save
yarn add angularjs-annotations
bower install angularjs-annotations --save
Usage
TypeScript
import { Component } from 'angularjs-annotations';
@Component({
controller: AppComponentController,
template: require('./app.component.html')
})
export class AppComponent implements ng.IComponentOptions {
}
Test
npm run test