18 lines
409 B
TypeScript

import * as WhmcsMapper from "./mapper";
import * as WhmcsRaw from "./raw.types";
export const Whmcs = {
...WhmcsMapper,
mapper: WhmcsMapper,
raw: WhmcsRaw,
schemas: {
response: WhmcsRaw.whmcsClientResponseSchema,
client: WhmcsRaw.whmcsClientSchema,
stats: WhmcsRaw.whmcsClientStatsSchema,
},
};
export { WhmcsMapper, WhmcsRaw };
export * from "./mapper";
export * from "./raw.types";