UNPKG

postel-ita

Version:

Library to create files compatible with italian Poste Postel system

19 lines (18 loc) 561 B
import { HeaderParams, Convenzione, Lotto, TipoLotto, Bollettino, Prio, CartaIntestata, BollettinoType, LogoBollettino } from '../types'; declare class Header { responsabile: string; telefono: string; fax: string; mail: string; prio: Prio; idConvenzione: Convenzione; lotto: Lotto; tipoLotto: TipoLotto; bollettino: Bollettino; cartaIntestata: CartaIntestata; bollettinoType: BollettinoType; logoBollettino: LogoBollettino; init({ ...opt }: HeaderParams): void; result(): string; } export default Header;