aboutsummaryrefslogtreecommitdiff
path: root/node_modules/simple-git/src/lib/utils/exit-codes.d.ts
blob: 1c389c7f1d35f4ddb196663e28829f455aa8d79d (plain)
1
2
3
4
5
6
7
8
9
/**
 * Known process exit codes used by the task parsers to determine whether an error
 * was one they can automatically handle
 */
export declare enum ExitCodes {
    SUCCESS = 0,
    ERROR = 1,
    UNCLEAN = 128
}