elearning/Frontend-Learner/node_modules/eslint-merge-processors/dist/index.d.ts
2026-01-13 10:48:02 +07:00

14 lines
333 B
TypeScript

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 };