Files
epg/scripts/types/queue.d.ts
2025-10-22 02:27:22 +03:00

11 lines
245 B
TypeScript

import { SiteConfig } from '../core/siteConfig'
import { Channel } from '../models/channel'
import { Dayjs } from 'dayjs'
export interface QueueItem {
channel: Channel
date: Dayjs
siteConfig: SiteConfig
error: string | null
}