UNPKG

epg-grabber

Version:

Node.js CLI tool for grabbing EPG from different sites

11 lines (8 loc) 260 B
import { Channel, Program } from '../models' import { Dayjs } from 'dayjs' export type GrabCallback = (context: GrabCallbackContext, error: Error | null) => void export interface GrabCallbackContext { channel: Channel programs: Program[] date: Dayjs }