UNPKG

304 BTypeScriptView Raw
1declare module 'command-line-commands' {
2 module commandLineCommands {
3 interface ParsedCommand {
4 command: string;
5 argv: string[];
6 }
7 }
8
9 function commandLineCommands(commands: string[], argv?: string[])
10 : commandLineCommands.ParsedCommand;
11
12 export = commandLineCommands;
13}