mirror of
https://github.com/anidl/multi-downloader-nx.git
synced 2026-03-11 17:45:30 +00:00
Fix eslint
This commit is contained in:
parent
57e0e1ad38
commit
29717824cd
4 changed files with 8 additions and 20 deletions
7
@types/crunchyAndroidEpisodes.d.ts
vendored
7
@types/crunchyAndroidEpisodes.d.ts
vendored
|
|
@ -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;
|
||||
|
|
|
|||
7
@types/crunchyAndroidObject.d.ts
vendored
7
@types/crunchyAndroidObject.d.ts
vendored
|
|
@ -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;
|
||||
|
|
|
|||
7
@types/hidiveDashboard.d.ts
vendored
7
@types/hidiveDashboard.d.ts
vendored
|
|
@ -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 {
|
||||
}
|
||||
}
|
||||
7
@types/newHidiveSearch.d.ts
vendored
7
@types/newHidiveSearch.d.ts
vendored
|
|
@ -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[];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue