- Implemented VpnServicesService for managing VPN plans and activation fees. - Created SimCallHistoryFormatterService for formatting call history data. - Developed SimCallHistoryParserService to parse call history CSV files. - Added AnimatedContainer and AnimatedBackground components for UI animations. - Introduced BentoServiceCard, FloatingGlassCard, GlowButton, and ValuePropCard components for landing page. - Implemented useCountUp hook for animated number counting. - Added cancellation months utility functions for subscription management.
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";
|