UNPKG

@visulima/cerebro

Version:

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

10 lines (9 loc) 291 B
import CerebroError from "./cerebro-error.d.ts"; /** * Error thrown when plugin operations fail. */ declare class PluginError extends CerebroError { readonly pluginName: string; constructor(pluginName: string, message: string, originalError?: Error); } export default PluginError;