https://github.com/angular/angular
Raw File
Tip revision: c2edcce4369e3573d9863ae93ed737bf9f179845 authored by Jessica Janiuk on 08 March 2023, 18:52:19 UTC
release: cut the v16.0.0-next.2 release
Tip revision: c2edcce
hero.ts
export interface Hero {
  id: number;
  name: string;
}
back to top