@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
14 lines (13 loc) • 394 B
TypeScript
import type { IRoom } from '../rooms';
import type { IUser } from '../users';
import type { IDepartment } from './IDepartment';
export declare enum LivechatTransferEventType {
AGENT = "agent",
DEPARTMENT = "department"
}
export interface ILivechatTransferEventContext {
type: LivechatTransferEventType;
room: IRoom;
from: IUser | IDepartment;
to: IUser | IDepartment;
}