17 lines
332 B
TypeScript
Raw Normal View History

/**
* Billing Domain - Providers
*/
import * as WhmcsMapper from "./whmcs/mapper.js";
import * as WhmcsRaw from "./whmcs/raw.types.js";
export const Whmcs = {
...WhmcsMapper,
mapper: WhmcsMapper,
raw: WhmcsRaw,
};
export { WhmcsMapper, WhmcsRaw };
export * from "./whmcs/mapper.js";
export * from "./whmcs/raw.types.js";