We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71f3adb commit 91b2a35Copy full SHA for 91b2a35
watch/child-process.ts
@@ -1,5 +1,12 @@
1
import { spawn as nodeSpawn } from "node:child_process";
2
-import type { Signals } from "npm:@types/node@16.18.126";
+
3
+type Signals =
4
+ | "SIGABRT" | "SIGALRM" | "SIGBUS" | "SIGCHLD" | "SIGCONT" | "SIGFPE"
5
+ | "SIGHUP" | "SIGILL" | "SIGINT" | "SIGIO" | "SIGIOT" | "SIGKILL"
6
+ | "SIGPIPE" | "SIGPOLL" | "SIGPROF" | "SIGPWR" | "SIGQUIT" | "SIGSEGV"
7
+ | "SIGSTKFLT" | "SIGSTOP" | "SIGSYS" | "SIGTERM" | "SIGTRAP" | "SIGTSTP"
8
+ | "SIGTTIN" | "SIGTTOU" | "SIGUNUSED" | "SIGURG" | "SIGUSR1" | "SIGUSR2"
9
+ | "SIGVTALRM" | "SIGWINCH" | "SIGXCPU" | "SIGXFSZ";
10
11
import type { Operation, Stream } from "effection";
12
import {
0 commit comments