京都のkintone用javascript
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

16 行
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 {};