UNPKG

@message-queue-toolkit/core

Version:

Useful utilities, interfaces and base classes for message queue handling. Supports AMQP and SQS with a common abstraction on top currently

8 lines (7 loc) 225 B
/** * Check if the retry date is exceeded * * @param timestamp * @param maxRetryDuration max retry duration in seconds */ export declare const isRetryDateExceeded: (timestamp: Date, maxRetryDuration: number) => boolean;