mirror of
https://github.com/documenso/documenso.git
synced 2025-11-09 20:12:31 +10:00
15 lines
400 B
TypeScript
15 lines
400 B
TypeScript
declare namespace NodeJS {
|
|
export interface ProcessEnv {
|
|
NEXT_PUBLIC_WEBAPP_URL?: string;
|
|
NEXT_PUBLIC_MARKETING_URL?: string;
|
|
|
|
NEXT_PRIVATE_DATABASE_URL: string;
|
|
|
|
NEXT_PUBLIC_STRIPE_COMMUNITY_PLAN_MONTHLY_PRICE_ID: string;
|
|
NEXT_PUBLIC_STRIPE_COMMUNITY_PLAN_YEARLY_PRICE_ID: string;
|
|
|
|
NEXT_PRIVATE_STRIPE_API_KEY: string;
|
|
NEXT_PRIVATE_STRIPE_WEBHOOK_SECRET: string;
|
|
}
|
|
}
|