@visulima/cerebro
Version:
A delightful toolkit for building cross-runtime CLIs for Node.js, Deno, and Bun.
11 lines (10 loc) • 323 B
TypeScript
import CerebroError from "./cerebro-error.d.ts";
/**
* Error thrown when there are conflicting options.
*/
declare class ConflictingOptionsError extends CerebroError {
readonly option1: string;
readonly option2: string;
constructor(option1: string, option2: string);
}
export default ConflictingOptionsError;