DefinitelyTyped/types/commander-remaining-args/index.d.ts
2019-06-20 14:01:52 -07:00

14 lines
444 B
TypeScript

// Type definitions for commander-remaining-args 1.2
// Project: https://github.com/axelchalon/commander-remaining-args#readme
// Definitions by: Florian Keller <https://github.com/ffflorian>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
/// <reference types="node" />
import { Command } from 'commander';
declare function getRemainingArgs(cli: Command): string[];
export = getRemainingArgs;