Files
portfolio/node_modules/fork-ts-checker-webpack-plugin/lib/createEslinter.d.ts
2021-09-20 16:54:47 -04:00

5 lines
207 B
TypeScript

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