export declare class DrudgeArticle {
html: string;
time: Date;
location: string;
index: number;
source: string;
href: string;
latest: Date;
}
export declare class DrudgeFetch {
ready: boolean;
history: DrudgeArticle[];
latest: DrudgeArticle[];
constructor();
findNew(): Promise;
isDuplicate(article: any): boolean;
getLatest(): Promise;
get(): Promise<{}>;
parseHeadlines(body: string): any[];
parseMainHeadline(body: string): any[];
parseFirstColumn(body: string): any[];
parseSecondColumn(body: string): any;
parseThirdColumn(body: string): any[];
}