Feat: Reworked ENTIRE Project for Readability

This commit is contained in:
Youwes09
2026-04-20 00:19:22 -05:00
parent 005680394e
commit 4b97f4a6c9
191 changed files with 19210 additions and 15915 deletions
+45
View File
@@ -0,0 +1,45 @@
export interface TrackerStatus {
value: number;
name: string;
}
export interface Tracker {
id: number;
name: string;
icon: string;
isLoggedIn: boolean;
authUrl: string | null;
supportsPrivateTracking: boolean;
scores: string[];
statuses: TrackerStatus[];
}
export interface TrackRecord {
id: number;
trackerId: number;
remoteId: string;
title: string;
status: number;
score: number;
displayScore: string;
lastChapterRead: number;
totalChapters: number;
remoteUrl: string | null;
startDate: string | null;
finishDate: string | null;
private: boolean;
}
export interface TrackSearch {
id: number;
trackerId: number;
remoteId: string;
title: string;
coverUrl: string | null;
summary: string | null;
publishingStatus: string | null;
publishingType: string | null;
startDate: string | null;
totalChapters: number;
trackingUrl: string | null;
}