https://github.com/angular/angular
Raw File
Tip revision: ace0a683f60eba3d30d11f241c59e37386b2b805 authored by Alex Rickabaugh on 02 November 2023, 21:39:01 UTC
release: cut the v16.2.12 release
Tip revision: ace0a68
hero.ts
export interface Hero {
  id: number;
  name: string;
}
back to top