mirror of
https://github.com/toddbluhm/env-cmd.git
synced 2025-12-08 18:23:33 +00:00
7 lines
266 B
TypeScript
7 lines
266 B
TypeScript
import type { EnvCmdOptions, CommanderOptions } from './types.ts';
|
|
/**
|
|
* Parses the arguments passed into the cli
|
|
*/
|
|
export declare function parseArgs(args: string[]): EnvCmdOptions;
|
|
export declare function parseArgsUsingCommander(args: string[]): CommanderOptions;
|