@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
24 lines (23 loc) • 499 B
TypeScript
/**
* @deprecated please prefer the rocket.chat/ui-kit components
*/
export declare enum TextObjectType {
MARKDOWN = "mrkdwn",
PLAINTEXT = "plain_text"
}
/**
* @deprecated please prefer the rocket.chat/ui-kit components
*/
export interface ITextObject {
type: TextObjectType;
text: string;
emoji?: boolean;
}
/**
* @deprecated please prefer the rocket.chat/ui-kit components
*/
export interface IOptionObject {
text: ITextObject;
value: string;
url?: string;
}