coforma/swift-tech-challenge

View on GitHub
environment.d.ts

Summary

Maintainability
A
0 mins
Test Coverage
declare global {
  namespace NodeJS {
    interface ProcessEnv {
      NEXT_PUBLIC_MIXPANEL_PROJECT_TOKEN: string;
      NODE_ENV: "dev" | "production";
    }
  }
}

export {};