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