import { Rule } from "eslint"; //#region src/oxlint.d.ts /** * Plugin object compatible with Oxlint's JS plugin API. * * Kept module-private on purpose: consumers should rely on the default * export and the Oxlint runtime to resolve the shape, rather than * importing this type and risking drift from upstream's `Plugin` * definition in `@oxlint/plugins`. */ interface OxlintPlugin { meta: { name: string; version: string; }; rules: Record; } declare const plugin: OxlintPlugin; //#endregion export { plugin as default };