9 lines
238 B
TypeScript
9 lines
238 B
TypeScript
|
|
import { CLIEngineOptions } from './types/eslint';
|
||
|
|
declare type EsLintReporterOptions = {
|
||
|
|
files: string | string[];
|
||
|
|
enabled?: boolean;
|
||
|
|
memoryLimit?: number;
|
||
|
|
options?: CLIEngineOptions;
|
||
|
|
};
|
||
|
|
export { EsLintReporterOptions };
|