fix: make sure series/movies endpoints use correct type
This commit is contained in:
@@ -1,17 +1,3 @@
|
||||
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;
|
||||
};
|
||||
};
|
||||
import { Movie } from "./movies.ts";
|
||||
|
||||
export type Series = Movie;
|
||||
|
||||
Reference in New Issue
Block a user