Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

16 righe
261 B

  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. }