UNPKG

@accounter/modern-poalim-scraper

Version:
10 lines (9 loc) 406 B
import { Page } from 'playwright'; import { $ZodIssue } from 'zod/v4/core'; import { OtsarHahayalOptions } from './index.js'; import { CreditCardsResponse } from './schemas.js'; export declare function getCreditCards(page: Page, options: OtsarHahayalOptions, headers: Record<string, string>): Promise<{ data: CreditCardsResponse | null; isValid: boolean | null; errors: $ZodIssue[] | null; }>;