mirror of
https://github.com/iptv-org/epg.git
synced 2026-06-17 01:58:32 +02:00
11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
import { Channel } from '../models/channel'
|
|
import epgGrabber from 'epg-grabber'
|
|
import { Dayjs } from 'dayjs'
|
|
|
|
export interface QueueItem {
|
|
channel: Channel
|
|
date: Dayjs
|
|
config: epgGrabber.Types.SiteConfig
|
|
error: string | null
|
|
}
|