mirror of
https://github.com/alexta69/metube.git
synced 2026-09-21 13:35:01 +00:00
18 lines
368 B
TypeScript
18 lines
368 B
TypeScript
export interface SubscriptionRow {
|
|
id: string;
|
|
name: string;
|
|
url: string;
|
|
enabled: boolean;
|
|
check_interval_minutes: number;
|
|
download_type: string;
|
|
codec: string;
|
|
format: string;
|
|
quality: string;
|
|
folder: string;
|
|
title_regex?: string;
|
|
skip_subscriber_only?: boolean;
|
|
last_checked: number | null;
|
|
seen_count: number;
|
|
error: string | null;
|
|
}
|