Skip to content

Commit

Permalink
Remove multiline options from documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
motdotla committed Jan 31, 2022
1 parent ab38cf2 commit 155c285
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions lib/main.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,21 +54,6 @@ export interface DotenvConfigOptions {
* example: `require('dotenv').config({ override: true })`
*/
override?: boolean;

/**
* Default: `false`
*
* Turn on multiline line break parsing.
*
* example:
*
* MY_VAR="this
* is
* a
* multiline
* string"
*/
multiline?: boolean;
}

export interface DotenvConfigOutput {
Expand All @@ -81,7 +66,7 @@ export interface DotenvConfigOutput {
*
* See https://docs.dotenv.org
*
* @param options - additional options. example: `{ path: './custom/path', encoding: 'latin1', debug: true, override: false, multiline: false }`
* @param options - additional options. example: `{ path: './custom/path', encoding: 'latin1', debug: true, override: false }`
* @returns an object with a `parsed` key if successful or `error` key if an error occurred. example: { parsed: { KEY: 'value' } }
*
*/
Expand Down

0 comments on commit 155c285

Please sign in to comment.