mirror of
https://github.com/idanoo/GoScrobble
synced 2025-06-30 21:22:18 +00:00
4 lines
207 B
TypeScript
4 lines
207 B
TypeScript
import { LintReport, Options as EslintOptions } from './types/eslint';
|
|
export declare function createEslinter(eslintOptions: EslintOptions): {
|
|
getReport: (filepath: string) => LintReport | undefined;
|
|
};
|