Files
openclaw/src/agents/command-poll-backoff.runtime.ts
2026-06-04 09:17:00 -04:00

14 lines
507 B
TypeScript

/**
* Runtime seam for command poll backoff cleanup.
*/
import { pruneStaleCommandPolls as pruneStaleCommandPollsImpl } from "./command-poll-backoff.js";
type PruneStaleCommandPolls = typeof import("./command-poll-backoff.js").pruneStaleCommandPolls;
/** Prune stale command polls using the production backoff implementation. */
export function pruneStaleCommandPolls(
...args: Parameters<PruneStaleCommandPolls>
): ReturnType<PruneStaleCommandPolls> {
return pruneStaleCommandPollsImpl(...args);
}