UNPKG

t-comm

Version:

专业、稳定、纯粹的工具库

13 lines (12 loc) 303 B
import type * as Dotenv from 'dotenv'; /** * 获取 dotenv 库 * dotenv 是一个用于加载环境变量的第三方库 * @returns dotenv 库 * @example * ```ts * const dotenv = getDotenv(); * dotenv.config({ path: '.env.local' }); * ``` */ export declare function getDotenv(): typeof Dotenv;