6 lines
183 B
TypeScript
6 lines
183 B
TypeScript
import type { Rule } from 'eslint';
|
|
/**
|
|
* Gets one or more Root, returns an array of root directories.
|
|
*/
|
|
export declare const getRootDirs: (context: Rule.RuleContext) => string[];
|