https://github.com/angular/angular
Raw File
Tip revision: ea3b5f1cde4ac30551898ada7b68d586be9f93ed authored by Andrew Kushnir on 10 May 2023, 18:18:44 UTC
release: cut the v16.1.0-next.0 release
Tip revision: ea3b5f1
hero.ts
export interface Hero {
  id: number;
  name: string;
}
back to top