UNPKG

@accounter/israeli-vat-scraper

Version:
14 lines (13 loc) 1.03 kB
import type { ReportCommon, ReportDetails, ReportExpansion, ReportFixedInvoice, ReportInputRecord, ReportInputRecordDetails, ReportInputs, ReportSales } from './types.js'; export declare function getSelectOptions(optionSelector: string): { name: string; value: string; }[]; export declare const getReportsTable: (element: Element | null) => ReportCommon[]; export declare const getReportDetails: (table: Element) => ReportDetails | undefined; export declare const getReportExpansionTitle: (table: Element) => ReportExpansion | undefined; export declare const getReportExpansionInputs: (table: Element) => ReportInputs | undefined; export declare const getReportExpansionInputRecords: (table: Element) => ReportInputRecord[]; export declare const getReportExpansionInputRecordDetails: (table: Element) => ReportInputRecordDetails | undefined; export declare const getReportExpansionSales: (table: Element) => ReportSales | undefined; export declare const getReportExpansionFixes: (table: Element) => ReportFixedInvoice[];