@nestjstools/messaging-google-pubsub-extension
Version:
Extension to handle messages and dispatch them over Google PubSub
8 lines (7 loc) • 350 B
TypeScript
import { Channel } from '@nestjstools/messaging';
import { GooglePubSubChannelConfig } from './google-pub-sub.channel-config';
import { PubSub } from '@google-cloud/pubsub';
export declare class GooglePubSubChannel extends Channel<GooglePubSubChannelConfig> {
readonly pubSubManager: PubSub;
constructor(config: GooglePubSubChannelConfig);
}