%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
// TypeScript Version: 3.0 /// <reference types="node" /> export interface DotenvPopulateInput { [name: string]: string; } export interface DotenvParseInput { [name: string]: string; } export interface DotenvParseOutput { [name: string]: string; } export interface DotenvExpandOptions { error?: Error; /** * Default: `process.env` * * Specify an object to write your secrets to. Defaults to process.env environment variables. * * example: `const processEnv = {}; require('dotenv').config({ processEnv: processEnv })` */ processEnv?: DotenvPopulateInput; /** * Default: `object` * * Object coming from dotenv's parsed result. */ parsed?: DotenvParseInput; } export interface DotenvExpandOutput { error?: Error; parsed?: DotenvParseOutput; } /** * Adds variable expansion on top of dotenv. * * See https://docs.dotenv.org * * @param options - additional options. example: `{ processEnv: {}, error: null, parsed: { { KEY: 'value' } }` * @returns an object with a `parsed` key if successful or `error` key if an error occurred. example: { parsed: { KEY: 'value' } } * */ export function expand(options?: DotenvExpandOptions): DotenvExpandOutput