control-freak-ide/server/nodejs/lib/typings/modules/dotenv/index.d.ts
plastic-hub-dev-node-saturn 538369cff7 latest
2021-05-12 18:35:18 +02:00

40 lines
1.2 KiB
TypeScript

// Generated by typings
// Source: https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/562df78122170427d13d842f9c0d358b5cf88cb3/dotenv/index.d.ts
declare module 'dotenv' {
// Type definitions for dotenv 2.0.0
// Project: https://github.com/motdotla/dotenv
// Definitions by: Jussi Kinnula <https://github.com/jussikinnula/>, Borek Bernard <https://github.com/borekb>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/**
* Loads `.env` into `process.env`.
*
* @param options
* @return Object Object with the parsed keys and values, e.g., 'KEY=value' becomes { KEY: 'value' }
*/
export function config(options?: DotenvOptions): Object | false;
export interface DotenvOptions {
/**
* Dotenv outputs a warning to your console if missing a .env file. Suppress this warning using silent.
*
* @default false
*/
silent?: boolean;
/**
* You can specify a custom path if your file containing environment variables is named or located differently.
*
* @default '.env'
*/
path?: string;
/**
* You may specify the encoding of your file containing environment variables using this option.
*
* @default 'utf8'
*/
encoding?: string;
}
}