4 lines
80 B
TypeScript
4 lines
80 B
TypeScript
|
|
interface TextElem {
|
||
|
|
content:string; // 文字消息
|
||
|
|
}
|
||
|
|
export default TextElem;
|