UNPKG

n8n

Version:

n8n Workflow Automation Tool

8 lines (7 loc) 323 B
import type { EntitySubscriberInterface, UpdateEvent } from '@n8n/typeorm'; import { User } from '../entities/user'; export declare class UserSubscriber implements EntitySubscriberInterface<User> { private readonly eventReporter; listenTo(): typeof User; afterUpdate(event: UpdateEvent<User>): Promise<void>; }