index.d.ts 229 B

1234567
  1. /** Build-time values that bundlers replace before client code reaches a browser. */
  2. declare const process: {
  3. readonly env: {
  4. readonly NODE_ENV?: string
  5. readonly [name: `DSH_CLIENT_${string}`]: string | undefined
  6. }
  7. }