12 lines
556 B
TypeScript
12 lines
556 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;
|
|
transformWhmcsSubscription(rawProduct: unknown, options?: WhmcsMapper.TransformSubscriptionOptions): import("..").Subscription;
|
|
transformWhmcsSubscriptions(rawProducts: unknown[], options?: WhmcsMapper.TransformSubscriptionOptions): import("..").Subscription[];
|
|
};
|
|
export { WhmcsMapper, WhmcsRaw };
|
|
export * from "./whmcs/mapper";
|
|
export * from "./whmcs/raw.types";
|