Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@types/dotenv-flow) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Installation
npm install --save @types/dotenv-flow
Summary
This package contains type definitions for dotenv-flow (https://github.com/kerimdzhanov/dotenv-flow).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/dotenv-flow/v2.
index.d.ts
/// <reference types="node" />
export interface DotenvParseOptions {
/**
* You may turn on logging to help debug why certain keys or values are not being set as you expect.
*/
debug?: boolean | undefined;
}
export interface DotenvParseOutput {
[name: string]: string;
}
/**
* Parses a string or buffer in the .env file format into an object.
*
* @param src - contents to be parsed
* @param options - additional options
* @returns an object with keys and values based on `src`
*/
export function parse(
src: string | Buffer,
options?: DotenvParseOptions,
): DotenvParseOutput;
export interface DotenvConfigOptions {
/**
* Node environment (development/test/production/etc,.).
*/
node_env?: string | undefined;
/**
* Default node environment to use if `process.env.NODE_ENV` is not present.
*/
default_node_env?: string | undefined;
/**
* Path to `.env*` files directory.
*/
path?: string | undefined;
/**
* Encoding for reading the `.env*` files.
*/
encoding?: string | undefined;
/**
* In some cases the original "dotenv" library can be used by one of the dependent npm modules.
* It causes calling the original `dotenv.config()` that loads the `.env` file from your project before you can call `dotenv-flow.config()`.
*
* Such cases breaks `.env*` files priority because the previously loaded environment variables are treated as shell-defined thus having the higher priority.
*
* Setting the `purge_dotenv` option to `true` can gracefully fix this issue.
*/
purge_dotenv?: boolean | undefined;
}
export interface DotenvConfigOutput {
error?: Error | undefined;
parsed?: DotenvParseOutput | undefined;
}
/**
* Loads `.env` file contents into {@link https://nodejs.org/api/process.html#process_process_env | `process.env`}.
* Example: 'KEY=value' becomes { parsed: { KEY: 'value' } }
*
* @param options - controls behavior
* @returns an object with a `parsed` key if successful or `error` key if an error occurred
*/
export function config(options?: DotenvConfigOptions): DotenvConfigOutput;
Additional Details
- Last updated: Wed, 18 Oct 2023 01:17:34 GMT
- Dependencies: @types/node
Credits
These definitions were written by Dan Kerimdzhanov.