@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
27 lines (26 loc) • 513 B
TypeScript
export interface IUploadDetails {
/**
* Full filename of the file, including extension name
*/
name: string;
/**
* Size of the file
*/
size: number;
/**
* MIME type of the file
*/
type: string;
/**
* The id of the Room that the file will be uploaded to
*/
rid: string;
/**
* The id of the user that performed the upload
*/
userId: string;
/**
* The token of a Livechat visitor
*/
visitorToken?: string;
}