Files
ionic-framework/scripts/templates/provider/ts.tmpl
2016-09-13 15:02:41 -05:00

18 lines
372 B
Cheetah

import { Injectable } from '@angular/core';
import { Http } from '@angular/http';
import 'rxjs/add/operator/map';
/*
Generated class for the $CLASSNAME provider.
See https://angular.io/docs/ts/latest/guide/dependency-injection.html
for more info on providers and Angular 2 DI.
*/
@Injectable()
export class $CLASSNAME {
constructor(private http: Http) {
}
}