| 1 | export interface DotenvParseOptions { |
| 2 | /** |
| 3 | * You may turn on logging to help debug why certain keys or values are not being set as you expect. |
| 4 | */ |
| 5 | debug?: boolean |
| 6 | } |
| 7 | |
| 8 | export interface DotenvParseOutput { |
| 9 | [name: string]: string |
nothing calls this directly
no outgoing calls
no test coverage detected