23 lines
877 B
TypeScript
23 lines
877 B
TypeScript
// Declare process.env for Convex backend environment variables.
|
|
// Convex supports process.env to read variables set in the Convex Dashboard.
|
|
declare const process: {
|
|
readonly env: {
|
|
readonly USESEND_API_KEY?: string;
|
|
readonly USESEND_URL?: string;
|
|
readonly USESEND_FROM_EMAIL?: string;
|
|
readonly AUTH_GITHUB_ID?: string;
|
|
readonly AUTH_GITHUB_SECRET?: string;
|
|
readonly GITHUB_APP_ID?: string;
|
|
readonly GITHUB_APP_CLIENT_ID?: string;
|
|
readonly GITHUB_APP_CLIENT_SECRET?: string;
|
|
readonly GITHUB_APP_PRIVATE_KEY?: string;
|
|
readonly GITHUB_APP_WEBHOOK_SECRET?: string;
|
|
readonly GITHUB_APP_SLUG?: string;
|
|
readonly GITHUB_APP_INSTALLATION_ID?: string;
|
|
readonly GITHUB_APP_OWNER?: string;
|
|
readonly SPOON_ENCRYPTION_KEY?: string;
|
|
readonly SPOON_WORKER_TOKEN?: string;
|
|
readonly [key: string]: string | undefined;
|
|
};
|
|
};
|