postel-ita
Version:
Library to create files compatible with italian Poste Postel system
24 lines (23 loc) • 604 B
TypeScript
import Address from './Address';
import Form from './Form';
import Missive from './Missive';
import { AddressParams, BankAccount, CommParams } from '../types';
declare class Payment {
private pAddress;
private pMissive;
private pForm;
private _comm;
private _bank;
constructor({ address, comm, bank }: {
address: AddressParams;
comm: CommParams;
bank: BankAccount;
});
get address(): Address;
get missive(): Missive;
get form(): Form;
get bank(): BankAccount;
get comm(): CommParams;
result(): string;
}
export default Payment;