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