https://github.com/angular/angular
Raw File
Tip revision: dee68174072415751242665aeef08d024f24b122 authored by Dylan Hunn on 02 February 2023, 21:29:01 UTC
release: cut the v15.1.3 release
Tip revision: dee6817
hero.ts
export interface Hero {
  id: number;
  name: string;
}
back to top