Files
wallet/apps/extension/env.d.ts
T
Hanzo AI 78b18797d5 init: extract wallet from lux/exchange monorepo
Copies apps/extension, apps/mobile and 10 pkgs (wallet, ui, config,
utilities, sessions, gating, notifications, analytics, eslint-config,
prices) into a standalone pnpm workspace.  Resolves merge conflict
markers in extension and mobile package.json files, strips build
artifacts (.wxt, .output, Pods).
2026-04-11 01:59:19 -07:00

17 lines
387 B
TypeScript

/* oxlint-disable typescript/no-namespace -- required to define process.env type */
declare global {
namespace NodeJS {
// All process.env values used by this package should be listed here
interface ProcessEnv {
NODE_ENV?: 'development' | 'production' | 'test'
BUILD_ENV?: string
CI?: string
VERSION?: string
WDYR?: string
}
}
}
export {}