Files
openclaw/src/plugin-sdk/retry-runtime.ts
2026-03-28 05:59:07 +00:00

16 lines
361 B
TypeScript

// Public retry helpers for plugins that need retry config or policy runners.
export {
resolveRetryConfig,
retryAsync,
type RetryConfig,
type RetryInfo,
type RetryOptions,
} from "../infra/retry.js";
export {
createRateLimitRetryRunner,
createTelegramRetryRunner,
TELEGRAM_RETRY_DEFAULTS,
type RetryRunner,
} from "../infra/retry-policy.js";