checksync
Version:
A tool that allows code to be annotated across different files to ensure they remain in sync.
11 lines (10 loc) • 458 B
TypeScript
import { ILog } from "./types";
/**
* Given globs or paths to gitignore files, return a predicate for filtering.
*
* @param ignoreFileGlobs The globs or paths to gitignore files.
* @returns A predicate for filtering. If the predicate returns true, the file
* should be accepted; otherwise, it should be ignored.
*/
declare const _default: (ignoreFileGlobs: ReadonlyArray<string>, log: ILog) => Promise<(f: string) => boolean>;
export default _default;