Files
ionic-framework/scripts/templates/provider/ts.tmpl

19 lines
395 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/guide/dependency-injection for more info on providers
and Angular DI.
*/
@Injectable()
export class $CLASSNAME {
constructor(public http: Http) {
console.log('Hello $CLASSNAME Provider');
}
}