augmenttoolkit / node_modules /@nestjs /common /enums /shutdown-signal.enum.d.ts
Leon4gr45's picture
Include updated package-lock.json (part 9)
cd6720a verified
Raw
History Blame Contribute Delete
355 Bytes
/**
* System signals which shut down a process
*/
export declare enum ShutdownSignal {
SIGHUP = "SIGHUP",
SIGINT = "SIGINT",
SIGQUIT = "SIGQUIT",
SIGILL = "SIGILL",
SIGTRAP = "SIGTRAP",
SIGABRT = "SIGABRT",
SIGBUS = "SIGBUS",
SIGFPE = "SIGFPE",
SIGSEGV = "SIGSEGV",
SIGUSR2 = "SIGUSR2",
SIGTERM = "SIGTERM"
}