/** * @lombok-formulas/anova — wires the WS-5 ANOVA implementation into the * plugin system as two formulas: ANOVA_ONEWAY and ANOVA_TWOWAY. * * This plugin has NO direct dependency on I18nManager — it declares * `labelKey` / `errorCodeMap` (see src/engine/formula-types.ts) and lets * HostEngine resolve those against whichever language is active. That's * the actual integration contract between WS-4 and WS-5: anova.ts's * existing error codes (ANOVA_INSUFFICIENT_GROUPS, ANOVA_INSUFFICIENT_DATA) * and the locale files' pre-existing `formulas.anova_oneway` / * `formulas.anova_twoway` / `errors.insufficient_data` keys were defined * in earlier sessions but never connected until now. */ import type { IPlugin } from './types.js'; export declare const plugin: IPlugin; export default plugin;