UNPKG

@rocket.chat/apps-engine

Version:

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

20 lines (19 loc) 470 B
import type { IVisitorEmail } from './IVisitorEmail'; import type { IVisitorPhone } from './IVisitorPhone'; export interface IVisitor { id?: string; token: string; username: string; updatedAt?: Date; name: string; department?: string; phone?: Array<IVisitorPhone>; visitorEmails?: Array<IVisitorEmail>; status?: string; customFields?: { [key: string]: any; }; livechatData?: { [key: string]: any; }; }