UNPKG

@accounter/modern-poalim-scraper

Version:

A new architecture for Israeli bank scrapers to hopefully merge into [Israeli-bank-scrapers](https://github.com/eshaham/israeli-bank-scrapers) when they are ready

5 lines (4 loc) 444 B
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>;