- Changed TypeScript target and library settings in tsconfig files to align with ESNext standards. - Updated pnpm version in GitHub workflows for better dependency management. - Modified Dockerfile to reflect the updated pnpm version. - Adjusted import statements across various domain modules to include file extensions for consistency and compatibility. - Cleaned up TypeScript configuration files for improved clarity and organization.
17 lines
332 B
TypeScript
17 lines
332 B
TypeScript
/**
|
|
* 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";
|