京都の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.

16 lines
304B

  1. declare global {
  2. namespace NodeJS {
  3. interface ProcessEnv {
  4. NODE_ENV: "development" | "production" | "test";
  5. // 他の環境変数も追加できます
  6. VAR: {
  7. MYPAGE_BASE_URL: string;
  8. MYPAGE_TOKEN: string;
  9. };
  10. BUILD_TIME: string;
  11. }
  12. }
  13. }
  14. export {};