UNPKG

redis-smq-rest-api

Version:

REST API for RedisSMQ: OpenAPI 3 schema and Swagger UI for managing queues, messages, and consumers.

4 lines 362 B
import { IQueueRateLimit } from 'redis-smq'; import { TErrors } from '../../../errors/errors.js'; export type SetQueueRateLimitControllerResponseDTO = readonly [200, IQueueRateLimit] | TErrors['QueueNotFoundError'] | TErrors['InvalidRateLimitError'] | TErrors['InvalidRateLimitIntervalError']; //# sourceMappingURL=SetQueueRateLimitControllerResponseDTO.d.ts.map