Skip to content

Commit ec131b7

Browse files
committed
Remove more unused code
1 parent 6eb26da commit ec131b7

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

test/suite.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
11
import { expect } from "@std/expect";
2+
import { ctrlc } from "ctrlc-windows";
23
import { type KillSignal, type Options, type Output, x as $x } from "tinyexec";
34
export { afterEach, beforeEach, describe, it } from "@std/testing/bdd";
4-
import { ctrlc } from "ctrlc-windows";
55
export { expectType } from "ts-expect";
66
export { expect };
77

8-
import type { ChildProcess as NodeChildProcess } from "node:child_process";
9-
108
import type { Operation, Stream } from "../lib/types.ts";
119
import { resource, sleep, spawn, stream, until } from "../mod.ts";
1210

13-
interface ChildProcess extends NodeChildProcess {
14-
status: Operation<{ code: number | null; signal: NodeJS.Signals | null }>;
15-
}
16-
1711
export function* createNumber(value: number): Operation<number> {
1812
yield* sleep(1);
1913
return value;

0 commit comments

Comments
 (0)