Files
im/types/TextElem.ts
T

4 lines
80 B
TypeScript
Raw Normal View History

2025-12-05 16:10:52 +08:00
interface TextElem {
content:string; // 文字消息
}
export default TextElem;