Skip to content

Commit 91b2a35

Browse files
committed
Replaced Signals import
1 parent 71f3adb commit 91b2a35

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

watch/child-process.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
import { spawn as nodeSpawn } from "node:child_process";
2-
import type { Signals } from "npm:@types/node@16.18.126";
2+
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";
310

411
import type { Operation, Stream } from "effection";
512
import {

0 commit comments

Comments
 (0)