UNPKG

@visulima/cerebro

Version:

A delightful toolkit for building cross-runtime CLIs for Node.js, Deno, and Bun.

8 lines (7 loc) 282 B
/** * Parses the raw command into an array of strings. * @param commandArray Command string or list of command parts. * @returns The command as an array of strings. */ declare const parseRawCommand: (commandArray: string[] | string) => string[]; export default parseRawCommand;