mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
11 lines
190 B
TypeScript
11 lines
190 B
TypeScript
export enum STRIPE_CUSTOMER_TYPE {
|
|
INDIVIDUAL = 'individual',
|
|
TEAM = 'team',
|
|
}
|
|
|
|
export enum STRIPE_PLAN_TYPE {
|
|
TEAM = 'team',
|
|
COMMUNITY = 'community',
|
|
ENTERPRISE = 'enterprise',
|
|
}
|