frontity
Version:
Frontity cli and entry point to other packages
10 lines (9 loc) • 312 B
TypeScript
import { CommanderStatic } from "commander";
/**
* The CLI command that runs when the user types a command that doesn't exit.
*
* @param command - Unknown command.
* @param program - Commander instance.
*/
declare const unknown: (command: string, program: CommanderStatic) => never;
export default unknown;