createEslinter.d.ts 207 Bytes
import { LintReport, Options as EslintOptions } from './types/eslint';
export declare function createEslinter(eslintOptions: EslintOptions): {
    getReport: (filepath: string) => LintReport | undefined;
};