You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
261 B

4 years ago
  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. }