1.0.3 • Published 6 years ago

angularjs-annotations v1.0.3

Weekly downloads
33
License
MIT
Repository
github
Last release
6 years ago

angularjs-annotations

CircleCI Coverage Status

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