12 lines
438 B
TypeScript
12 lines
438 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;
|
|
transformWhmcsPaymentMethod(raw: unknown): import("..").PaymentMethod;
|
|
transformWhmcsPaymentGateway(raw: unknown): import("..").PaymentGateway;
|
|
};
|
|
export { WhmcsMapper, WhmcsRaw };
|
|
export * from "./whmcs/mapper";
|
|
export * from "./whmcs/raw.types";
|