chore: Fix types in tests 33/N.
This commit is contained in:
14
scripts/watch-node.d.mts
Normal file
14
scripts/watch-node.d.mts
Normal file
@@ -0,0 +1,14 @@
|
||||
export function runWatchMain(params?: {
|
||||
spawn?: (
|
||||
cmd: string,
|
||||
args: string[],
|
||||
options: unknown,
|
||||
) => {
|
||||
on: (event: "exit", cb: (code: number | null, signal: string | null) => void) => void;
|
||||
};
|
||||
process?: NodeJS.Process;
|
||||
cwd?: string;
|
||||
args?: string[];
|
||||
env?: NodeJS.ProcessEnv;
|
||||
now?: () => number;
|
||||
}): Promise<number>;
|
||||
Reference in New Issue
Block a user