mirror of
https://github.com/agregarr/agregarr.git
synced 2026-02-19 18:08:09 +08:00
24 lines
376 B
TypeScript
24 lines
376 B
TypeScript
export interface TvdbLoginResponse {
|
|
data: {
|
|
token: string;
|
|
};
|
|
}
|
|
|
|
export interface TvdbSeriesStatus {
|
|
id: number;
|
|
name: string;
|
|
recordType: string;
|
|
keepUpdated: boolean;
|
|
}
|
|
|
|
export interface TvdbSeriesData {
|
|
id: number;
|
|
name: string;
|
|
status: TvdbSeriesStatus;
|
|
lastAired: string | null;
|
|
}
|
|
|
|
export interface TvdbSeriesResponse {
|
|
data: TvdbSeriesData;
|
|
}
|