https://github.com/angular/angular
Raw File
Tip revision: f00f8c48632cfa4d0d73009ae06cb71e7ef1706f authored by Andrew Scott on 16 March 2022, 19:07:42 UTC
release: cut the v13.3.0 release (#45365)
Tip revision: f00f8c4
hero.ts
export interface Hero {
  id: number;
  name: string;
}
back to top