27 lines
449 B
TypeScript
27 lines
449 B
TypeScript
/**
|
|
* 订阅 API — 目录化入口
|
|
* 保持与原 subscription.ts 相同导出,向后兼容
|
|
*/
|
|
|
|
// 类型
|
|
export type {
|
|
PlanType,
|
|
SubscriptionStatus,
|
|
BillingStatus,
|
|
BillingCycle,
|
|
Plan,
|
|
SubscriptionInfo,
|
|
BillingRecord,
|
|
ChangePlanRequest,
|
|
ChangePlanResponse,
|
|
} from "./types"
|
|
|
|
// API 函数
|
|
export {
|
|
getCurrentSubscription,
|
|
getBillingRecords,
|
|
changePlan,
|
|
cancelSubscription,
|
|
toggleAutoRenew,
|
|
} from "./subscription"
|