UNPKG

unplugin-oxlint

Version:

A universal bundler plugin for integrating the Oxlint linter into your project.

23 lines (22 loc) 484 B
import { n as OxlintOptions } from "./types-o3El42no.cjs"; //#region src/rollup.d.ts /** * This entry file is for Rollup plugin. * * @module */ /** * Rollup plugin * * @example * ```ts * // rollup.config.js * import Oxlint from 'unplugin-oxlint/rollup' * * export default { * plugins: [Oxlint()], * } * ``` */ declare const _default: (options?: Partial<OxlintOptions> | undefined) => import("rollup").Plugin<any> | import("rollup").Plugin<any>[]; export = _default;