15 lines
333 B
TypeScript
15 lines
333 B
TypeScript
|
|
/**
|
||
|
|
* Subscription Utilities
|
||
|
|
*
|
||
|
|
* Shared utility functions for subscription management.
|
||
|
|
*/
|
||
|
|
|
||
|
|
export {
|
||
|
|
generateCancellationMonths,
|
||
|
|
getCancellationEffectiveDate,
|
||
|
|
getRunDateFromMonth,
|
||
|
|
type BaseCancellationMonth,
|
||
|
|
type CancellationMonthWithRunDate,
|
||
|
|
type GenerateCancellationMonthsOptions,
|
||
|
|
} from "./cancellation-months.js";
|