/** * @lombok-formulas/demo — Example formula-extension plugin. * * Registers a custom formula (TITLECASE) via the 'registerFormula' hook, * and demonstrates 'beforeFormulaEval' / 'onFormulaError' for lightweight * cross-cutting behavior (call logging, error counting) without touching * the core formula engine. * * This is a REFERENCE example — copy this file's shape when building a * real plugin. See PLUGIN_DEV_GUIDE.md for the full anatomy walkthrough. */ import type { IPlugin } from '../types.js'; export declare const plugin: IPlugin; export default plugin;