@ikarha/emecef
Version:
Node.js client library for interacting with the Benin e-MCF API for normalized invoicing
10 lines (9 loc) • 377 B
TypeScript
import { InfoResponseDto, InvoiceTypeDto, PaymentTypeDto, TaxGroupsDto } from '../types/info';
export declare class InfoService {
private readonly axiosInstance;
constructor();
getEmeCefInfo(): Promise<InfoResponseDto>;
getTaxGroups(): Promise<TaxGroupsDto>;
getInvoiceTypes(): Promise<InvoiceTypeDto[]>;
getPaymentTypes(): Promise<PaymentTypeDto[]>;
}