@accounter/modern-poalim-scraper
Version:
Modern scraper for Israeli banks (Hapoalim, Isracard, Max)
10 lines (9 loc) • 351 B
TypeScript
import { Page } from 'playwright';
import { $ZodIssue } from 'zod/v4/core';
import { OtsarHahayalOptions } from './index.js';
import type { Account } from './types.js';
export declare function getAccounts(page: Page, options: OtsarHahayalOptions): Promise<{
data: Account[] | null;
isValid: boolean | null;
errors: $ZodIssue[] | null;
}>;