mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
export enum SubscriptionStatus {
|
|
Trial = 'trial',
|
|
Active = 'active',
|
|
PastDue = 'past_due',
|
|
Canceled = 'canceled',
|
|
Expired = 'expired',
|
|
}
|