UNPKG

@rocket.chat/apps-engine

Version:

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

12 lines (11 loc) 527 B
import type { ITypingOptions } from '../../definition/accessors/INotifier'; import type { IMessage } from '../../definition/messages'; import { BaseBridge } from './BaseBridge'; export interface ITypingDescriptor extends ITypingOptions { isTyping: boolean; } export declare abstract class ThreadBridge extends BaseBridge { doGetById(messageId: string, appId: string): Promise<Array<IMessage>>; protected abstract getById(messageId: string, appId: string): Promise<Array<IMessage>>; private hasReadPermission; }