UNPKG

checksync

Version:

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

12 lines (11 loc) 420 B
import { ILog, MarkerCache, Options } from "./types"; /** * Build a marker cache by parsing the files identified in options. * * @export * @param options The options for this run * @param log A logger for outputting errors and the like. * @returns The promise of a marker cache. * @throws ExitError if no files are found. */ export default function buildCache(options: Options, log: ILog): Promise<MarkerCache>;