UNPKG

263 BTypeScriptView Raw
1export interface ListWatchErrorReaction {
2 resync: boolean;
3 backoff: number;
4}
5export declare type ListWatchErrorStrategy = (err: any, errCount: number) => ListWatchErrorReaction;
6export declare const DefaultListWatchErrorStrategy: ListWatchErrorStrategy;