signoz/frontend/src/typings/environment.ts
Vikrant Gupta 1b9683d699
feat: client changes for query stats (#5706)
* 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
2024-08-16 15:07:06 +05:30

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