UNPKG

ofx-data-extractor

Version:

A module written in TypeScript that provides a utility to extract data from an OFX file in Node.js and Browser

5 lines (4 loc) 246 B
import { Types } from '../@types/common'; import type { StatementTransaction } from '../@types/ofx/common'; export declare const extractType: (content: string) => Types; export declare function isDebt(transaction: StatementTransaction): boolean;