18 lines
292 B
TypeScript
18 lines
292 B
TypeScript
export type Series = {
|
|
id: string;
|
|
name: string;
|
|
description: string;
|
|
type: "series";
|
|
tags: string[];
|
|
meta: {
|
|
date: Date;
|
|
image: string;
|
|
author: string;
|
|
tmdbId?: number;
|
|
rating: number;
|
|
average?: string;
|
|
thumbnail?: string;
|
|
done?: boolean;
|
|
};
|
|
};
|