UNPKG

@visulima/cerebro

Version:

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

11 lines (10 loc) 283 B
/** * Copied from * The MIT License (MIT) * Copyright (c) 2015-21 Lloyd Brookes <75pound@gmail.com> */ declare const commandLineCommands: (commands: (string | null)[], argv: string[]) => { argv: string[]; command: string | null; }; export default commandLineCommands;