|
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
|
| Rev | Line | |
|---|
| [9af201e] | 1 | export = dotenv_expand;
|
|---|
| 2 |
|
|---|
| 3 | interface DotenvResult {
|
|---|
| 4 | error?: Error;
|
|---|
| 5 | parsed?: {
|
|---|
| 6 | [name: string]: string;
|
|---|
| 7 | };
|
|---|
| 8 | }
|
|---|
| 9 |
|
|---|
| 10 | declare function dotenv_expand(config: DotenvResult): DotenvResult;
|
|---|
| 11 |
|
|---|
| 12 | declare namespace dotenv_expand {
|
|---|
| 13 | const prototype: {
|
|---|
| 14 | };
|
|---|
| 15 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.