@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
23 lines (22 loc) • 429 B
TypeScript
import type { IUser } from './IUser';
/**
* The context of execution for the following events:
* - IPostUserStatusChanged
*/
export interface IUserStatusContext {
/**
* The user that the status
* was changed
*/
user: IUser;
/**
* The new status set by the
* user
*/
currentStatus: string;
/**
* The status previous the
* change
*/
previousStatus: string;
}