mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
12 lines
412 B
TypeScript
12 lines
412 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
|
|
|
|
import { Command } from 'commander';
|
|
|
|
declare function getRemainingArgs(cli: Command): string[];
|
|
|
|
export = getRemainingArgs;
|