@visulima/cerebro
Version:
A delightful toolkit for building cross-runtime CLIs for Node.js, Deno, and Bun.
11 lines (10 loc) • 345 B
TypeScript
import { VisulimaError } from "@visulima/error";
/**
* Base error class for Cerebro CLI operations.
*/
declare class CerebroError extends VisulimaError {
readonly code: string;
readonly context?: Record<string, unknown>;
constructor(message: string, code: string, context?: Record<string, unknown>);
}
export default CerebroError;