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

index.d.ts 261B

123456789101112131415
  1. export = dotenv_expand;
  2. interface DotenvResult {
  3. error?: Error;
  4. parsed?: {
  5. [name: string]: string;
  6. };
  7. }
  8. declare function dotenv_expand(config: DotenvResult): DotenvResult;
  9. declare namespace dotenv_expand {
  10. const prototype: {
  11. };
  12. }