n8n
Version:
n8n Workflow Automation Tool
5 lines (4 loc) • 406 B
TypeScript
import type { EventDestinations } from '../../databases/entities/event-destinations';
import type { MessageEventBusDestination } from './message-event-bus-destination.ee';
import type { MessageEventBus } from '../message-event-bus/message-event-bus';
export declare function messageEventBusDestinationFromDb(eventBusInstance: MessageEventBus, dbData: EventDestinations): MessageEventBusDestination | null;