UNPKG

@visulima/cerebro

Version:

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

10 lines (9 loc) 295 B
import CerebroError from "./cerebro-error.d.ts"; /** * Error thrown when a command is not found. */ declare class CommandNotFoundError extends CerebroError { readonly commandName: string; constructor(commandName: string, suggestions?: string[]); } export default CommandNotFoundError;