Skip to content

Instantly share code, notes, and snippets.

@nerdic-coder
Created April 24, 2018 18:17
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save nerdic-coder/d7d7c16d28d6460406ca0c848ba0998c to your computer and use it in GitHub Desktop.
mock-heroes.ts
import { Hero } from '../../models/hero';
export const HEROES: Hero[] = [
{ id: 11, name: 'Mr. Nice' },
{ id: 12, name: 'Narco' },
{ id: 13, name: 'Bombasto' },
{ id: 14, name: 'Celeritas' },
{ id: 15, name: 'Magneta' },
{ id: 16, name: 'RubberMan' },
{ id: 17, name: 'Dynama' },
{ id: 18, name: 'Dr IQ' },
{ id: 19, name: 'Magma' },
{ id: 20, name: 'Tornado' }
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment