mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-03-02 06:59:59 -05:00
13 lines
184 B
TypeScript
13 lines
184 B
TypeScript
import { Show } from "./show";
|
|
|
|
export interface Collection
|
|
{
|
|
slug: string;
|
|
name: string;
|
|
poster: string;
|
|
overview: string;
|
|
startYear: number,
|
|
endYear: number,
|
|
shows: Show[];
|
|
}
|