update docshredder to shred .es6 optimized focus gulp task convert imports and metadate sections add DI section add host and query metadata section add intro fix capitalization and grammar
14 lines
193 B
JavaScript
14 lines
193 B
JavaScript
import { Injectable } from '@angular/core';
|
|
|
|
export class DataService {
|
|
constructor() {
|
|
}
|
|
getHeroName() {
|
|
return 'Windstorm';
|
|
}
|
|
}
|
|
|
|
DataService.annotations = [
|
|
new Injectable()
|
|
];
|