@dotenv-run/core
Version:
core library to load environment variables with monorepo support
18 lines • 462 B
TypeScript
import type { DotenvConfigOptions } from "dotenv";
import { Dict } from "./build";
export interface DotenvRunOptions {
cwd?: string;
dotenv?: DotenvConfigOptions;
environment?: string;
files?: string[];
prefix?: string | RegExp;
unsecure?: boolean;
root?: string;
nodeEnv?: boolean;
verbose?: boolean;
builtIn?: Dict;
runtime?: boolean;
define?: string;
global?: string;
}
//# sourceMappingURL=options.d.ts.map