https://github.com/angular/angular
Raw File
Tip revision: ce3cd509f2038706e05cfafe3acfa6542c2cc902 authored by Misko Hevery on 05 May 2021, 20:54:16 UTC
release: cut the v11.2.13 release
Tip revision: ce3cd50
hero.ts
export interface Hero {
  id: number;
  name: string;
}
back to top