UNPKG

tslint-to-eslint-config

Version:

Converts your TSLint configuration to the closest reasonable ESLint equivalent.

8 lines (7 loc) 423 B
import { GlobAsync } from "../../adapters/globAsync"; import { CommentFileNames } from "../../comments/collectCommentFileNames"; import { ResultWithDataStatus } from "../../types"; export type ExtractGlobPathsDependencies = { globAsync: GlobAsync; }; export declare const extractGlobPaths: (dependencies: ExtractGlobPathsDependencies, { exclude, include }: CommentFileNames) => Promise<ResultWithDataStatus<string[]>>;