index.d.ts 246 B

12345678910
  1. interface IOptions {
  2. [key: string]: number | string | boolean;
  3. }
  4. declare type Params = string[];
  5. interface IParsedArgs {
  6. params: Params;
  7. options: IOptions;
  8. }
  9. declare const _default: (args: string[]) => IParsedArgs;
  10. export = _default;