Files
spoon/packages/backend/convex/globals.d.ts
T
Gabriel Brown 2dfa97ee4f
Build and Push Next App / quality (push) Failing after 48s
Build and Push Next App / build-next (push) Has been skipped
Add agent workflows & stuff
2026-06-21 21:15:15 -05:00

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;
};
};