import type { Settings } from '../eslint/types.ts'; type JsPlugin = string | { name: string; specifier: string; }; type Override = { jsPlugins?: JsPlugin[]; }; export type OxlintConfig = { jsPlugins?: JsPlugin[]; overrides?: Override[]; settings?: Settings; }; export {};