@vercel/sqs-consumer
Version:
Build SQS-based Node applications without the boilerplate
14 lines (13 loc) • 314 B
TypeScript
declare class SQSError extends Error {
code: string;
statusCode: number;
region: string;
hostname: string;
time: Date;
retryable: boolean;
constructor(message: string);
}
declare class TimeoutError extends Error {
constructor(message?: string);
}
export { SQSError, TimeoutError };