( pageId: string, topicId: string, updates: Partial<Omit<Topic, 'id'>> )
| 248 | * 更新 Topic |
| 249 | */ |
| 250 | export async function updateTopic( |
| 251 | pageId: string, |
| 252 | topicId: string, |
| 253 | updates: Partial<Omit<Topic, 'id'>> |
| 254 | ): Promise<void> { |
| 255 | await stores.message.updateTopic(pageId, topicId, updates) |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * 删除 Topic |
nothing calls this directly
no test coverage detected