line_push/node_modules/fork-ts-checker-webpack-plugin/lib/createEslinter.d.ts
2022-07-17 13:16:16 +08: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;
};