checksync
Version:
A tool that allows code to be annotated across different files to ensure they remain in sync.
11 lines (10 loc) • 369 B
TypeScript
import { MarkerCache, Options } from "./types";
/**
* Generate a marker cache from the given files.
*
* @export
* @param {Options} options
* @param {Array<string>} files The files to be loaded.
* @returns {Promise<MarkerCache>} A marker cache.
*/
export default function getMarkersFromFiles(options: Options, files: ReadonlyArray<string>): Promise<MarkerCache>;