mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
12 lines
213 B
TypeScript
12 lines
213 B
TypeScript
export enum STRIPE_CUSTOMER_TYPE {
|
|
INDIVIDUAL = 'individual',
|
|
TEAM = 'team',
|
|
}
|
|
|
|
export enum STRIPE_PLAN_TYPE {
|
|
REGULAR = 'regular',
|
|
TEAM = 'team',
|
|
COMMUNITY = 'community',
|
|
ENTERPRISE = 'enterprise',
|
|
}
|