mirror of https://github.com/openclaw/openclaw.git
23 lines
605 B
TypeScript
23 lines
605 B
TypeScript
declare module "../../scripts/watch-node.mjs" {
|
|
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>;
|
|
}
|
|
|
|
declare module "../../scripts/ci-changed-scope.mjs" {
|
|
export function detectChangedScope(paths: string[]): {
|
|
runNode: boolean;
|
|
runMacos: boolean;
|
|
runAndroid: boolean;
|
|
};
|
|
}
|