- import ScraperMethods from "../enums/scraper-methods"
- export interface IScraperReportsOptions {
- url: string
- reportsSelector: string
- dateSelector: string
- locationSelector: string
- depthSelector: string
- magnitudeSelector: string
- linkSelector: string
- locationImgSelector: string
- scraperMethod: ScraperMethods
- cacheExpiration?: number
- hashtags?: Array<string>
- };
|