17 lines
320 B
TypeScript
17 lines
320 B
TypeScript
/**
|
|
* Billing Domain - Providers
|
|
*/
|
|
|
|
import * as WhmcsMapper from "./whmcs/mapper";
|
|
import * as WhmcsRaw from "./whmcs/raw.types";
|
|
|
|
export const Whmcs = {
|
|
...WhmcsMapper,
|
|
mapper: WhmcsMapper,
|
|
raw: WhmcsRaw,
|
|
};
|
|
|
|
export { WhmcsMapper, WhmcsRaw };
|
|
export * from "./whmcs/mapper";
|
|
export * from "./whmcs/raw.types";
|