mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
12 lines
235 B
TypeScript
12 lines
235 B
TypeScript
import { TLimitsSchema } from './schema';
|
|
|
|
export const FREE_PLAN_LIMITS: TLimitsSchema = {
|
|
documents: 5,
|
|
recipients: 10,
|
|
};
|
|
|
|
export const SELFHOSTED_PLAN_LIMITS: TLimitsSchema = {
|
|
documents: Infinity,
|
|
recipients: Infinity,
|
|
};
|