UNPKG

checksync

Version:

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

14 lines (13 loc) 250 B
/** * Exit codes that can be exited with. */ export declare enum ExitCode { SUCCESS = 0, NO_FILES = 1, PARSE_ERRORS = 2, DESYNCHRONIZED_BLOCKS = 3, UNKNOWN_ARGS = 4, CATASTROPHIC = 5, BAD_CONFIG = 6, BAD_CACHE = 7 }