@nestjstools/messaging-amazon-sqs-extension
Version:
Extension to handle messages and dispatch them over Amazon SQS
8 lines (7 loc) • 332 B
TypeScript
import { Channel } from '@nestjstools/messaging';
import { AmazonSqsChannelConfig } from './amazon-sqs.channel-config';
import { SQSClient } from '@aws-sdk/client-sqs';
export declare class AmazonSqsChannel extends Channel<AmazonSqsChannelConfig> {
readonly client: SQSClient;
constructor(config: AmazonSqsChannelConfig);
}