UNPKG

israeli-bank-scrapers-core

Version:

Provide scrapers for all major Israeli banks and credit card companies

12 lines (11 loc) 476 B
import { BaseScraperWithBrowser, type LoginOptions } from './base-scraper-with-browser'; import { type ScraperScrapingResult } from './interface'; type ScraperSpecificCredentials = { id: string; password: string; }; declare class BehatsdaaScraper extends BaseScraperWithBrowser<ScraperSpecificCredentials> { getLoginOptions(credentials: ScraperSpecificCredentials): LoginOptions; fetchData(): Promise<ScraperScrapingResult>; } export default BehatsdaaScraper;