UNPKG

postel-ita

Version:

Library to create files compatible with italian Poste Postel system

12 lines (11 loc) 368 B
import Payment from './Payment'; import { IWithResult } from './IWithResult'; import PostelRow from './Syntax/PostelRow'; declare class MissiveBody implements IWithResult { private pPayment; private _rows; constructor(payment: Payment); addRow(distance: number, position?: 'rel' | 'abs'): PostelRow; result(): string; } export default MissiveBody;