statement-parser-fab
Version:
Parse bank and credit card statements. Updated fork with FAB (First Abu Dhabi Bank) support and maintained dependencies.
8 lines (7 loc) • 353 B
TypeScript
import { ParsedOutput, ParsedTransaction } from '../parsed-output';
export type PaypalTransaction = ParsedTransaction & {
baseAmount: number;
fees: number;
};
export type PaypalOutput = ParsedOutput<PaypalTransaction>;
export declare const paypalStatementParser: Readonly<import("../statement-parser").StatementParser<PaypalOutput, undefined>>;