UNPKG

n8n

Version:

n8n Workflow Automation Tool

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