postel-ita
Version:
Library to create files compatible with italian Poste Postel system
12 lines (11 loc) • 368 B
TypeScript
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;