n8n
Version:
n8n Workflow Automation Tool
10 lines (9 loc) • 420 B
TypeScript
import { EventService } from '../../events/event.service';
import { EventRelay } from '../../events/relays/event-relay';
import { FavoritesService } from './favorites.service';
export declare class FavoritesEventRelay extends EventRelay {
readonly eventService: EventService;
private readonly favoritesService;
constructor(eventService: EventService, favoritesService: FavoritesService);
init(): void;
}