11 lines
156 B
TypeScript
Raw Normal View History

import { Injectable } from '@angular/core';
@Injectable()
export class DataService {
constructor() {
}
getHeroName() {
return 'Windstorm';
}
}