UNPKG

checksync

Version:

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

10 lines (9 loc) 291 B
import { ExitCode } from "./exit-codes"; /** * Error thrown to communicate an process exit condition. */ export declare class ExitError extends Error { constructor(message: string, exitCode: ExitCode, options?: ErrorOptions); readonly exitCode: ExitCode; toString(): string; }