t-comm
Version:
专业、稳定、纯粹的工具库
13 lines (12 loc) • 392 B
TypeScript
import type * as DotenvExpand from 'dotenv-expand';
/**
* 获取 dotenv-expand 库
* dotenv-expand 是一个用于扩展 dotenv 环境变量的第三方库
* @returns dotenv-expand 库
* @example
* ```ts
* const dotenvExpand = getDotenvExpand();
* dotenvExpand.expand({ parsed: { FOO: 'bar', BAZ: '$FOO' } });
* ```
*/
export declare function getDotenvExpand(): typeof DotenvExpand;