mirror of
https://github.com/toddbluhm/env-cmd.git
synced 2025-12-08 18:23:33 +00:00
9 lines
295 B
TypeScript
9 lines
295 B
TypeScript
import type { Environment } from './types.ts';
|
|
/**
|
|
* Executes env - cmd using command line arguments
|
|
* @export
|
|
* @param {string[]} args Command line argument to pass in ['-f', './.env']
|
|
* @returns {Promise<Environment>}
|
|
*/
|
|
export declare function CLI(args: string[]): Promise<Environment>;
|