UNPKG

@rocket.chat/apps-engine

Version:

The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.

22 lines (21 loc) 399 B
import type { IUser } from './IUser'; /** * The context of execution for the * IPostUserUpdated event */ export interface IUserUpdateContext { /** * The user that was affected by * update */ user: IUser; /** * The user that performed the * updates */ performedBy?: IUser; /** * The user before the update */ previousData?: IUser; }