京都のkintone用javascript
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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