UNPKG

@fcc-cdc/it-events

Version:
9 lines (8 loc) 375 B
import { Agenda, AgendaCrawler } from './core'; export declare const TimePattern: RegExp; export declare abstract class CommonAgendaCrawler extends AgendaCrawler { document?: Document; getList(URI: string): AsyncGenerator<Agenda, void, undefined>; getItem(selector: string): Promise<Agenda>; protected getItems({ children }: HTMLTableRowElement): Agenda[]; }