/** @typedef {import('eslint').ESLint} ESLint */ /** @typedef {import('eslint').ESLint.LintResult} LintResult */ /** @typedef {import('./options').Options} Options */ /** @typedef {() => Promise} AsyncTask */ /** @typedef {(files: string|string[]) => Promise} LintTask */ /** @typedef {JestWorker & {lintFiles: LintTask}} Worker */ /** @typedef {{threads: number, ESLint: ESLint, eslint: ESLint, lintFiles: LintTask, cleanup: AsyncTask}} Linter */ /** * @param {Options} options * @returns {Linter} */ export function loadESLint(options: Options): Linter; /** * @param {number} poolSize * @param {Options} options * @returns {Linter} */ export function loadESLintThreaded(poolSize: number, options: Options): Linter; /** * @param {Options} options * @returns {Linter} */ export default function getESLint({ threads, ...options }: Options): Linter; export type ESLint = import('eslint').ESLint; export type LintResult = import('eslint').ESLint.LintResult; export type Options = import('./options').PluginOptions & import('eslint').ESLint.Options; export type AsyncTask = () => Promise; export type LintTask = (files: string | string[]) => Promise; export type Worker = JestWorker & { lintFiles: LintTask; }; export type Linter = { threads: number; ESLint: ESLint; eslint: ESLint; lintFiles: LintTask; cleanup: AsyncTask; }; import JestWorker from 'jest-worker';