import { ScrapeType } from '.'; export interface HistoryItem { type: ScrapeType; input: string; collected_items: number; last_change: Date; file_location: string; } export interface History { [key: string]: HistoryItem; }