| 20 | }; |
| 21 | |
| 22 | export interface Subscription { |
| 23 | id: string; |
| 24 | plan: PlanType; |
| 25 | quota: number; |
| 26 | startAt: number; |
| 27 | expireAt: number; |
| 28 | canceledAt?: number; |
| 29 | } |
| 30 | |
| 31 | export interface Payment { |
| 32 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected