mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-20 22:40:58 +00:00
10 lines
371 B
TypeScript
10 lines
371 B
TypeScript
import { pruneStaleCommandPolls as pruneStaleCommandPollsImpl } from "./command-poll-backoff.js";
|
|
|
|
type PruneStaleCommandPolls = typeof import("./command-poll-backoff.js").pruneStaleCommandPolls;
|
|
|
|
export function pruneStaleCommandPolls(
|
|
...args: Parameters<PruneStaleCommandPolls>
|
|
): ReturnType<PruneStaleCommandPolls> {
|
|
return pruneStaleCommandPollsImpl(...args);
|
|
}
|