15 lines
274 B
TypeScript
15 lines
274 B
TypeScript
|
|
/**
|
||
|
|
* Subscriptions Domain
|
||
|
|
*
|
||
|
|
* Exports all subscription-related types, schemas, and utilities.
|
||
|
|
*/
|
||
|
|
|
||
|
|
// Export domain contract
|
||
|
|
export * from "./contract";
|
||
|
|
|
||
|
|
// Export domain schemas
|
||
|
|
export * from "./schema";
|
||
|
|
|
||
|
|
// Provider adapters
|
||
|
|
export * as Providers from "./providers";
|