更新云信相关代码

This commit is contained in:
XiuYun CHEN
2025-07-10 08:57:32 +08:00
parent a297e0452f
commit 5954f51701
523 changed files with 61546 additions and 1488 deletions
@@ -0,0 +1,20 @@
/*
* Copyright (c) 2022 NetEase, Inc. All rights reserved.
* Use of this source code is governed by a MIT license that can be
* found in the LICENSE file.
*
*/
import { ConversationSelectModel } from './ConversationSelectModel';
export class ConversationSelectedParam {
selectedList?: ConversationSelectModel[] = [];
onRemoveButtonClick?: (item: ConversationSelectModel) => void = undefined // 移除按钮点击事件
constructor(selectedList?: ConversationSelectModel[],
onRemoveButtonClick?: (item: ConversationSelectModel) => void
) {
this.selectedList = selectedList
this.onRemoveButtonClick = onRemoveButtonClick
}
}