京都の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 {};