We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fba1a2 commit f22614bCopy full SHA for f22614b
1 file changed
extensions/codex/src/node-cli-process-tree.test.ts
@@ -1,9 +1,10 @@
1
import type { ChildProcess, spawn } from "node:child_process";
2
import { describe, expect, it, vi } from "vitest";
3
-import {
4
- signalCodexResumeProcessTree,
5
- type CodexResumeProcessTreeRuntime,
6
-} from "./node-cli-process-tree.js";
+import { signalCodexResumeProcessTree } from "./node-cli-process-tree.js";
+
+type CodexResumeProcessTreeRuntime = NonNullable<
+ Parameters<typeof signalCodexResumeProcessTree>[2]
7
+>;
8
9
function createChild(pid = 4321) {
10
return {
0 commit comments