buster/packages/slack/env.d.ts

14 lines
292 B
TypeScript

declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV?: 'development' | 'production' | 'test';
// Add your environment variables here
SLACK_CLIENT_ID: string;
SLACK_CLIENT_SECRET: string;
SLACK_SIGNING_SECRET: string;
}
}
}
export {};