@hysc/meeting 1.8.44 → 1.8.45

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.
@@ -128,4 +128,13 @@ export default class BMUserVM {
128
128
  }>;
129
129
  getTotalUserNumber(): Promise<number>;
130
130
  clearUsers(): void;
131
+ /**
132
+ * 参会者列表搜索(嘉宾及以上才能搜索)
133
+ * @param searchTxt 搜索文本
134
+ * @param pageSize 一页几个
135
+ */
136
+ searchUsers(searchTxt: string, pageSize: number): Promise<{
137
+ userList: BMUser[];
138
+ commonUserList: BMUser[];
139
+ }>;
131
140
  }