createEslinter.d.ts 207 B

1234
  1. import { LintReport, Options as EslintOptions } from './types/eslint';
  2. export declare function createEslinter(eslintOptions: EslintOptions): {
  3. getReport: (filepath: string) => LintReport | undefined;
  4. };