source: frontend/node_modules/dotenv-expand/index.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 261 bytes
Line 
1export = dotenv_expand;
2
3interface DotenvResult {
4 error?: Error;
5 parsed?: {
6 [name: string]: string;
7 };
8}
9
10declare function dotenv_expand(config: DotenvResult): DotenvResult;
11
12declare namespace dotenv_expand {
13 const prototype: {
14 };
15}
Note: See TracBrowser for help on using the repository browser.