forked from daren.hsu/line_push
5 lines
207 B
TypeScript
5 lines
207 B
TypeScript
import { LintReport, Options as EslintOptions } from './types/eslint';
|
|
export declare function createEslinter(eslintOptions: EslintOptions): {
|
|
getReport: (filepath: string) => LintReport | undefined;
|
|
};
|