京都のkintone用javascript
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 line
170B

  1. declare global {
  2. namespace NodeJS {
  3. interface ProcessEnv {
  4. NODE_ENV: "development" | "production" | "test";
  5. BUILD_TIME: string;
  6. }
  7. }
  8. }
  9. export {};