Files
chat/client/shared/utils/panel-helper.ts

17 lines
359 B
TypeScript
Raw Permalink Normal View History

2026-04-25 16:36:34 +08:00
import { GroupPanel, GroupPanelType } from '../model/group';
/**
*
*
* ()
*/
export function isConversePanel(panel: GroupPanel) {
// 目前只有文本面板
if (panel.type === GroupPanelType.TEXT) {
return true;
}
return false;
}