https://github.com/angular/angular
Raw File
Tip revision: 73c7882629a65158fa31b431dad7340aa4b02e91 authored by Alex Rickabaugh on 23 September 2020, 18:54:47 UTC
release: cut the v10.1.3 release
Tip revision: 73c7882
hero.ts
export interface Hero {
  id: number;
  name: string;
}
back to top