ps2census
Version:
Client to connect to the PS2 Event Stream websocket.
8 lines (7 loc) • 328 B
TypeScript
import { CollectionNames } from '../../rest/types/collection';
export declare class MaxRetryException extends Error {
readonly collection: CollectionNames;
readonly conditions: Record<any, any>;
readonly attempts: any[];
constructor(collection: CollectionNames, conditions: Record<any, any>, attempts: any[]);
}