elearning/Frontend-Learner/node_modules/eslint-merge-processors/dist/index.d.mts

15 lines
333 B
TypeScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
import { Linter } from 'eslint';
/**
* Merge multiple processors into one
*
* @param processors
*/
declare function mergeProcessors(processors: Linter.Processor[]): Linter.Processor;
/**
* Pass-through the file itself
*/
declare const processorPassThrough: Linter.Processor;
export { mergeProcessors, processorPassThrough };