13 lines
185 B
TypeScript
13 lines
185 B
TypeScript
export interface Env {
|
|
|
|
DB_STRING?: string;
|
|
SERVER_URL?: string;
|
|
TIX_TAX_ROOM_NAME?: string;
|
|
}
|
|
|
|
declare global {
|
|
namespace NodeJS{
|
|
interface ProcessEnv extends Env {}
|
|
}
|
|
}
|