UNPKG

@inbridge/oif-ts

Version:

TypeScript integration for the Open Invoice Format (OIF) schema. Easily create OIF-compliant PDFs and parse/validate JSON.

12 lines (9 loc) 543 B
import { PaymentInformationType } from '../enums/payment-information-type.enum.js'; import { SEPAPayment } from '../classes/payment-information/sepa-payment.js'; import '../types/sepa-information.type.js'; import '../types/business-information.type.js'; import '../types/address.type.js'; import '../enums/country-code.enum.js'; import '../types/private-person-information.type.js'; declare function getPaymentInformationConstructorByType(type: PaymentInformationType): typeof SEPAPayment; export { getPaymentInformationConstructorByType };