@fcgs/filerr-nach
Version:
nACH is a highly customizable Node.js module exposing a high & low-level API for generating ACH files for use within the ACH network
19 lines (15 loc) • 495 B
TypeScript
import Entry from './lib/entry';
import EntryAddenda from './lib/entry-addenda';
import Batch from './lib/batch';
import File from './lib/file';
import Utils from './lib/utils';
import Validate from './lib/validate';
export { Entry, EntryAddenda, Batch, File, Utils, Validate };
export function parse(
str: string,
cb: (err: any, file: File) => void
): Promise<File>;
export function parseFile(
filePath: string,
cb: (err: any, file: File) => void
): Promise<File>;