@accounter/modern-poalim-scraper
Version:
Modern scraper for Israeli banks (Hapoalim, Isracard, Max)
5 lines (4 loc) • 444 B
TypeScript
import type { Page } from 'puppeteer';
export declare function fetchPostWithinPage<TResult>(page: Page, url: string, data: Record<string, unknown>, extraHeaders?: Record<string, string>): Promise<TResult | null>;
export declare function fetchGetWithinPage<TResult>(page: Page, url: string): Promise<TResult | null>;
export declare function fetchPoalimXSRFWithinPage<TResult>(page: Page, url: string, pageUuid: string): Promise<TResult | null>;