5 lines
56 B
TypeScript
5 lines
56 B
TypeScript
export interface Hero {
|
|
id: number;
|
|
name: string;
|
|
}
|