mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-10 17:16:55 +00:00
11 lines
284 B
TypeScript
11 lines
284 B
TypeScript
export function writeFailedTrailer(
|
|
tool: string,
|
|
exitCode: number | string | null | undefined,
|
|
log?: (value: unknown) => void,
|
|
): void;
|
|
export function runWithFailedTrailer(
|
|
tool: string,
|
|
run: () => void | Promise<void>,
|
|
log?: (value: unknown) => void,
|
|
): Promise<void>;
|