openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
5 lines (4 loc) • 330 B
TypeScript
/** Return true for transient memory read failures that should be retried. */
export declare function isTransientMemoryReadError(error: unknown): boolean;
/** Retry a memory read with the narrow transient error predicate. */
export declare function retryTransientMemoryRead<T>(read: () => Promise<T>, label?: string): Promise<T>;