mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-18 15:53:16 +02:00
13 lines
238 B
TypeScript
13 lines
238 B
TypeScript
export type TitleType = 'movie' | 'series' | 'person';
|
|
export type TitleId = {
|
|
id: number;
|
|
provider: 'tmdb' | 'tvdb';
|
|
type: TitleType;
|
|
};
|
|
|
|
export type MediaType = 'Movie' | 'Series';
|
|
|
|
declare global {
|
|
const REIVERR_VERSION: string;
|
|
}
|