14 lines
340 B
TypeScript
14 lines
340 B
TypeScript
import { InMemoryDbService } from 'angular-in-memory-web-api';
|
|
|
|
export class InMemoryDataService implements InMemoryDbService {
|
|
createDb() {
|
|
const heroes = [
|
|
{ id: 11, name: 'Mr. Nice' },
|
|
{ id: 12, name: 'Narco' },
|
|
{ id: 13, name: 'Bombasto' },
|
|
{ id: 14, name: 'Celeritas' },
|
|
];
|
|
return {heroes};
|
|
}
|
|
}
|