refactored change type

This commit is contained in:
DerPenz
2023-05-06 19:22:40 +02:00
parent 9457dce115
commit 33830afe92
11 changed files with 150 additions and 147 deletions

View File

@@ -37,24 +37,6 @@ export interface GuestStar {
profile_path: string | null;
}
export interface TvEpisodeChangeItem {
id: string;
action: string;
time: string;
iso_639_1: string;
iso_3166_1: string;
value: string;
}
export interface TvEpisodeChange {
key: string;
items: TvEpisodeChangeItem[];
}
export interface TvEpisodeChanges {
changes: TvEpisodeChange[];
}
export interface TvEpisodeCredit extends Credits {
guest_stars: GuestStar[];
}
@@ -72,3 +54,5 @@ export interface TvEpisodeTranslations {
};
};
}
export type TvEpisodeChangeValue = string | unknown;