@visulima/cerebro
Version:
A delightful toolkit for building cross-runtime CLIs for Node.js, Deno, and Bun.
10 lines (9 loc) • 317 B
TypeScript
import CerebroError from "./cerebro-error.d.ts";
/**
* Error thrown when completion command operations fail.
*/
declare class CompletionError extends CerebroError {
readonly troubleshooting: string[];
constructor(message: string, code: string, troubleshooting?: string[]);
}
export default CompletionError;