UNPKG

@visulima/cerebro

Version:

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

11 lines (10 loc) 342 B
import CerebroError from "./cerebro-error.d.ts"; /** * Error thrown when command validation fails. */ declare class CommandValidationError extends CerebroError { readonly commandName: string; readonly missingOptions: string[]; constructor(commandName: string, missingOptions: string[]); } export default CommandValidationError;