6 lines
70 B
TypeScript
Raw Normal View History

// #docregion
export interface Hero {
id: number;
name: string;
}