feat: search page stops querying detail api

This commit is contained in:
shinya
2025-06-22 22:46:32 +08:00
parent 7061378c92
commit 201ad3c8e3
7 changed files with 255 additions and 272 deletions

19
src/lib/types.ts Normal file
View File

@@ -0,0 +1,19 @@
export interface VideoDetail {
code: number;
episodes: string[];
detailUrl: string;
videoInfo: {
title: string;
cover?: string;
desc?: string;
type?: string;
year?: string;
area?: string;
director?: string;
actor?: string;
remarks?: string;
source_name: string;
source: string;
id: string;
};
}