UNPKG

@nestjstools/messaging-amazon-sqs-extension

Version:

Extension to handle messages and dispatch them over Amazon SQS

7 lines (6 loc) 354 B
import { AmazonSqsChannel } from './amazon-sqs.channel'; import { IChannelFactory } from '@nestjstools/messaging'; import { AmazonSqsChannelConfig } from './amazon-sqs.channel-config'; export declare class AmazonSqsChannelFactory implements IChannelFactory<AmazonSqsChannelConfig> { create(channelConfig: AmazonSqsChannelConfig): AmazonSqsChannel; }