eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
15 lines • 417 B
TypeScript
//#region src/utils/resolveSignal.d.ts
declare const linuxSignalMapping: {
readonly SIGHUP: 1;
readonly SIGINT: 2;
readonly SIGQUIT: 3;
readonly SIGKILL: 9;
readonly SIGTERM: 15;
readonly SIGCONT: 18;
readonly SIGSTOP: 19;
};
type CommonLinuxSignals = keyof typeof linuxSignalMapping;
type Signal = CommonLinuxSignals | number;
//#endregion
export { Signal };
//# sourceMappingURL=resolveSignal.d.ts.map