mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-24 17:52:45 +00:00
14 lines
444 B
TypeScript
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;
|