mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-07-07 01:08:54 -07:00
24 lines
501 B
TypeScript
24 lines
501 B
TypeScript
export interface HistoryVideoRow {
|
|
videoId: number;
|
|
sourcePath: string;
|
|
parsedTitle: string | null;
|
|
parsedSeason: number | null;
|
|
parsedEpisode: number | null;
|
|
animeTitle: string | null;
|
|
lastWatchedMs: number;
|
|
coverBlobHash: string | null;
|
|
}
|
|
|
|
export interface HistorySeriesEntry {
|
|
seriesRoot: string;
|
|
displayName: string;
|
|
lastWatched: HistoryVideoRow;
|
|
coverBlobHash: string | null;
|
|
}
|
|
|
|
export interface SeasonDirEntry {
|
|
name: string;
|
|
path: string;
|
|
season: number | null;
|
|
}
|