Fix eslint
Some checks failed
auto-documentation / documentation (push) Has been cancelled
build and push docker image / build-node (push) Has been cancelled
Style and build test / eslint (push) Has been cancelled
Style and build test / test (push) Has been cancelled

This commit is contained in:
AnimeDL 2025-04-19 10:14:14 -07:00
parent 57e0e1ad38
commit 29717824cd
4 changed files with 8 additions and 20 deletions

View file

@ -4,15 +4,12 @@ export interface CrunchyAndroidEpisodes {
__class__: string;
__href__: string;
__resource_key__: string;
__links__: Actions;
__actions__: Actions;
__links__: object;
__actions__: object;
total: number;
items: CrunchyAndroidEpisode[];
}
export interface Actions {
}
export interface CrunchyAndroidEpisode {
__class__: string;
__href__: string;

View file

@ -4,15 +4,12 @@ export interface CrunchyAndroidObject {
__class__: string;
__href__: string;
__resource_key__: string;
__links__: Actions;
__actions__: Actions;
__links__: object;
__actions__: object;
total: number;
items: AndroidObject[];
}
export interface Actions {
}
export interface AndroidObject {
__class__: string;
__href__: string;

View file

@ -2,7 +2,7 @@ export interface HidiveDashboard {
Code: number;
Status: string;
Message: null;
Messages: Messages;
Messages: object;
Data: Data;
Timestamp: string;
IPAddress: string;
@ -67,7 +67,4 @@ export enum Status {
Paused = 'Paused',
Playing = 'Playing',
Watching = 'Watching',
}
export interface Messages {
}
}

View file

@ -14,7 +14,7 @@ export interface Result {
query: string;
params: string;
index: string;
renderingContent: RenderingContent;
renderingContent: object;
processingTimeMS: number;
processingTimingsMS: ProcessingTimingsMS;
serverTimeMS: number;
@ -31,7 +31,7 @@ export interface Hit {
id: number;
name: string;
description: string;
meta: RenderingContent;
meta: object;
coverUrl: string;
smallCoverUrl: string;
seasonsCount: number;
@ -74,9 +74,6 @@ export interface HitLocalization {
description: string;
}
export interface RenderingContent {
}
export interface Ratings {
US: string[];
}