@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
25 lines (21 loc) • 525 B
TypeScript
export interface ControlField {
name: string;
width: number;
position: number;
type: string;
value: string | number;
number?: boolean;
blank?: boolean;
}
interface ControlFields {
recordTypeCode: ControlField;
batchCount: ControlField;
blockCount: ControlField;
addendaCount: ControlField;
entryHash: ControlField;
totalDebit: ControlField;
totalCredit: ControlField;
reserved: ControlField;
}
declare const ControlFields: ControlFields;
export default ControlFields;