@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
18 lines (17 loc) • 485 B
TypeScript
export declare enum RocketChatAssociationModel {
ROOM = "room",
DISCUSSION = "discussion",
MESSAGE = "message",
LIVECHAT_MESSAGE = "livechat-message",
USER = "user",
FILE = "file",
MISC = "misc",
VIDEO_CONFERENCE = "video-conference"
}
export declare class RocketChatAssociationRecord {
private model;
private id;
constructor(model: RocketChatAssociationModel, id: string);
getModel(): RocketChatAssociationModel;
getID(): string;
}