12 lines
526 B
TypeScript

import * as WhmcsMapper from "./whmcs/mapper";
import * as WhmcsRaw from "./whmcs/raw.types";
export declare const Whmcs: {
mapper: typeof WhmcsMapper;
raw: typeof WhmcsRaw;
transformWhmcsInvoice(rawInvoice: unknown, options?: WhmcsMapper.TransformInvoiceOptions): import("..").Invoice;
transformWhmcsInvoices(rawInvoices: unknown[], options?: WhmcsMapper.TransformInvoiceOptions): import("..").Invoice[];
};
export { WhmcsMapper, WhmcsRaw };
export * from "./whmcs/mapper";
export * from "./whmcs/raw.types";