mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 04:08:01 -05:00
* fix: add base path config to the bridge ui * fix: remove unused import * update bridge UI ci build job * fix: update env.template
14 lines
275 B
TypeScript
14 lines
275 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
E2E_TEST_SEED_PHRASE: string;
|
|
E2E_TEST_PRIVATE_KEY: string;
|
|
E2E_TEST_WALLET_PASSWORD: string;
|
|
NEXT_PUBLIC_INFURA_ID: string;
|
|
NEXT_PUBLIC_BASE_PATH: string;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|