mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-10-31 18:47:11 -04:00
21 lines
290 B
TypeScript
21 lines
290 B
TypeScript
import { IResource } from "./resource";
|
|
|
|
export enum ItemType
|
|
{
|
|
Show,
|
|
Movie,
|
|
Collection
|
|
}
|
|
|
|
export interface LibraryItem extends IResource
|
|
{
|
|
title: string;
|
|
overview: string;
|
|
status: string;
|
|
trailerUrl: string;
|
|
startYear: number;
|
|
endYear: number;
|
|
poster: string;
|
|
type: ItemType;
|
|
}
|