UNPKG

@microsoft/signalr

Version:
8 lines (7 loc) 309 B
import { IRetryPolicy, RetryContext } from "./IRetryPolicy"; /** @private */ export declare class DefaultReconnectPolicy implements IRetryPolicy { private readonly _retryDelays; constructor(retryDelays?: number[]); nextRetryDelayInMilliseconds(retryContext: RetryContext): number | null; }