@onyx-p/imlib-web 2.9.6 → 2.9.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.esm.js +4 -4
- package/index.umd.js +4 -4
- package/package.json +1 -1
- package/types/index.d.ts +4 -0
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -214,6 +214,10 @@ export declare const recallMessage: (conversation: IConversationOption, options:
|
|
|
214
214
|
* 获取远程历史消息
|
|
215
215
|
*/
|
|
216
216
|
export declare const getRemoteHistoryMessages: (conversation: IConversationOption, options: GetHistoryMessageOption) => IPromiseResult<GetHistoryMessageResult>;
|
|
217
|
+
/**
|
|
218
|
+
* 从本地数据库中获取消息
|
|
219
|
+
*/
|
|
220
|
+
export declare const getHistoryMessages: (conversation: IConversationOption, options: GetHistoryMessageOption) => IPromiseResult<GetHistoryMessageResult>;
|
|
217
221
|
/**
|
|
218
222
|
* 按消息 id 删除消息
|
|
219
223
|
*/
|