6 lines
90 B
TypeScript
6 lines
90 B
TypeScript
export interface GenreSliderItem {
|
|
id: number;
|
|
name: string;
|
|
backdrops: string[];
|
|
}
|