mirror of
https://github.com/d-fi/d-fi-core.git
synced 2025-07-27 07:34:42 +02:00
export episode type
This commit is contained in:
parent
f85595ac19
commit
0ee9c7368e
@ -5,6 +5,7 @@ import type {trackType} from './tracks';
|
||||
import type {profileTypeMinimal} from './profile';
|
||||
import type {channelSearchType} from './channel';
|
||||
import type {radioType} from './radio';
|
||||
import type {showEpisodeType} from './show';
|
||||
|
||||
interface searchTypeCommon {
|
||||
count: number;
|
||||
@ -43,7 +44,7 @@ interface liveSearchType extends searchTypeCommon {
|
||||
}
|
||||
|
||||
interface showSearchType extends searchTypeCommon {
|
||||
data: unknown[];
|
||||
data: showEpisodeType[];
|
||||
}
|
||||
|
||||
export interface discographyType {
|
||||
|
@ -3,7 +3,7 @@ interface generesType {
|
||||
GENRE_NAME: string; // 'Technology';
|
||||
}
|
||||
|
||||
interface episodeType {
|
||||
export interface showEpisodeType {
|
||||
EPISODE_ID: string; // '294961882';
|
||||
EPISODE_STATUS: string; // '1';
|
||||
AVAILABLE: boolean;
|
||||
@ -54,7 +54,7 @@ export interface showType {
|
||||
};
|
||||
FAVORITE_STATUS: boolean; // false;
|
||||
EPISODES: {
|
||||
data: episodeType[];
|
||||
data: showEpisodeType[];
|
||||
count: number; // 1;
|
||||
total: number; // 174;
|
||||
filtered_count: number; // 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user