https://github.com/angular/angular
Raw File
Tip revision: e6ee7c2aebc65b70c89224d5c226751e0d3d7223 authored by Joey Perrott on 02 September 2020, 20:06:00 UTC
release: cut the v11.0.0-next.0 release
Tip revision: e6ee7c2
hero.ts
export interface Hero {
  id: number;
  name: string;
}
back to top