refactor: consolidate lazy runtime surfaces

This commit is contained in:
Peter Steinberger
2026-03-17 00:58:46 -07:00
parent 449127b474
commit 9648e7fecb
47 changed files with 602 additions and 730 deletions

View File

@@ -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);
}