mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 05:20:24 +08:00
13 lines
368 B
TypeScript
13 lines
368 B
TypeScript
// Type definitions for dotenv 2.0.0
|
|
// Project: https://github.com/motdotla/dotenv
|
|
// Definitions by: Jussi Kinnula <https://github.com/jussikinnula/>
|
|
// Definitions: https://github.com/jussikinnula/DefinitelyTyped
|
|
|
|
export function config(options?: dotenvOptions): boolean;
|
|
|
|
interface dotenvOptions {
|
|
silent?: boolean;
|
|
path?: string;
|
|
encoding?: string;
|
|
}
|