@nestjstools/messaging-google-pubsub-extension
Version:
Extension to handle messages and dispatch them over Google PubSub
7 lines (6 loc) • 380 B
TypeScript
import { GooglePubSubChannel } from './google-pub-sub.channel';
import { IChannelFactory } from '@nestjstools/messaging';
import { GooglePubSubChannelConfig } from './google-pub-sub.channel-config';
export declare class GooglePubSubChannelFactory implements IChannelFactory<GooglePubSubChannelConfig> {
create(channelConfig: GooglePubSubChannelConfig): GooglePubSubChannel;
}