13 lines
365 B
TypeScript

/**
* WHMCS Provider
*
* Handles mapping from WHMCS API to domain types.
* Exports transformation functions and raw API types (request/response).
*/
export * from "./mapper.js";
export * from "./raw.types.js";
// Re-export domain types for provider namespace convenience
export type { WhmcsClient, EmailPreferences, SubUser, Stats } from "../../schema.js";