mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
400 B
TypeScript
15 lines
400 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
|
|
|
|
interface dotenvOptions {
|
|
silent?: boolean;
|
|
path?: string;
|
|
encoding?: string;
|
|
}
|
|
|
|
declare module 'dotenv' {
|
|
export function config(options?: dotenvOptions): boolean;
|
|
}
|