mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-09 10:25:32 +00:00
8 lines
229 B
TypeScript
8 lines
229 B
TypeScript
/**
|
|
* Exit codes defined in <sysexits.h>:
|
|
* https://www.freebsd.org/cgi/man.cgi?query=sysexits&apropos=0&sektion=0&manpath=FreeBSD+4.3-RELEASE&format=html
|
|
*/
|
|
export const enum SysExits {
|
|
EX_USAGE = 64,
|
|
EX_DATAERR = 65,
|
|
};
|