(planName: string)
| 113 | * Get plan limits for a given plan name |
| 114 | */ |
| 115 | export function getPlanLimits(planName: string): number { |
| 116 | const plan = getPlanByName(planName) |
| 117 | return plan?.limits.cost ?? getFreeTierLimit() |
| 118 | } |
| 119 | |
| 120 | export interface StripePlanResolution { |
| 121 | priceId: string | undefined |
nothing calls this directly
no test coverage detected