UNPKG

checksync

Version:

A tool that allows code to be annotated across different files to ensure they remain in sync.

11 lines (10 loc) 537 B
import { ILog } from "./types"; /** * Expand the given globs and ignore files into a list of files. * * @param {Array<string>} includeGlobs The include globs to expand. * @param {Array<string>} excludeGlobs The exclude globs to expand. * @param {Array<string>} ignoreFiles The ignore files to expand. * @param {ILog} log A log to record things */ export default function getFiles(includeGlobs: ReadonlyArray<string>, excludeGlobs: ReadonlyArray<string>, ignoreFileGlobs: ReadonlyArray<string>, log: ILog): Promise<Array<string>>;