18 lines
473 B
TypeScript
18 lines
473 B
TypeScript
/**
|
|
* Common Domain
|
|
*
|
|
* Shared types and utilities used across all domains.
|
|
*/
|
|
|
|
export * from "./types";
|
|
export * from "./schema";
|
|
export * from "./validation";
|
|
|
|
// Common provider types (generic wrappers used across domains)
|
|
export * as CommonProviders from "./providers/index";
|
|
|
|
// Re-export provider types for convenience
|
|
export type { WhmcsResponse, WhmcsErrorResponse } from "./providers/whmcs";
|
|
export type { SalesforceResponse } from "./providers/salesforce";
|
|
|