mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-21 02:26:42 +02:00
- Add CreditService with balance checking and consumption - Add GiftService for gift code creation and redemption - Add i18n support for credit/gift messages (DE/EN) - Add Matrix bot mixins for credit and gift commands
14 lines
379 B
TypeScript
14 lines
379 B
TypeScript
export { CreditService } from './credit.service';
|
|
export { CreditModule } from './credit.module';
|
|
export type {
|
|
CreditBalance,
|
|
CreditValidationResult,
|
|
CreditConsumeResult,
|
|
CreditModuleOptions,
|
|
CreditStatusMessage,
|
|
CreditPackage,
|
|
PaymentLinkResult,
|
|
PurchaseStatus,
|
|
PurchaseStatusResult,
|
|
} from './types';
|
|
export { CREDIT_MODULE_OPTIONS, CreditErrorCode } from './types';
|