checksync
Version:
A tool that allows code to be annotated across different files to ensure they remain in sync.
13 lines (12 loc) • 441 B
TypeScript
import { ExitCode } from "./exit-codes";
import { ILog, Options } from "./types";
/**
*
* Check the sync marks for the files represented by the given globs.
*
* @export
* @param {Options} options The options for this run
* @param {ILog} log A logger for outputting errors and the like.
* @returns {Promise<ErrorCode>} The promise of an error code
*/
export default function checkSync(options: Options, log: ILog): Promise<ExitCode>;