mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-28 09:33:06 +00:00
refactor: consolidate lazy runtime surfaces
This commit is contained in:
@@ -1 +1,9 @@
|
||||
export { pruneStaleCommandPolls } from "./command-poll-backoff.js";
|
||||
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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user