UNPKG

332 BTypeScriptView Raw
1import { CLICommands } from "./cli.commands";
2import { FlagsOutput } from "./cli.parse";
3export interface PostCLIParse {
4 cli: FlagsOutput;
5 execute: boolean;
6 output: string[];
7}
8export default function (args: string[]): PostCLIParse;
9export declare function getCommand(incoming: string, commands: CLICommands): string[];