11 lines
166 B
TypeScript
11 lines
166 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
JWT_SECRET: string;
|
|
JWT_EXPIRES: string;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|