mirror of
https://github.com/toddbluhm/env-cmd.git
synced 2025-12-08 18:23:33 +00:00
- Removed all the various eslint dependencies and added ts-standard - Updated Readme file with some minor changes - Updated dist folder to have one level again
8 lines
268 B
TypeScript
8 lines
268 B
TypeScript
import { Command } from 'commander';
|
|
import { EnvCmdOptions } from './types';
|
|
/**
|
|
* Parses the arguments passed into the cli
|
|
*/
|
|
export declare function parseArgs(args: string[]): EnvCmdOptions;
|
|
export declare function parseArgsUsingCommander(args: string[]): Command;
|