mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-02 04:40:40 +08:00

* feat: changes for the query stats websockets * chore: remove unwanted files * fix: work on random id rather than hash * fix: improve the icons and design * feat: webpack and docker file changes * fix: test cases * chore: format the units * chore: address review comments * chore: update the id to uuid package * fix: build issues * chore: remove docker file changes * chore: remove docker file changes
12 lines
229 B
TypeScript
12 lines
229 B
TypeScript
/* eslint-disable @typescript-eslint/no-namespace */
|
|
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
FRONTEND_API_ENDPOINT: string | undefined;
|
|
WEBSOCKET_API_ENDPOINT: string | undefined;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|