Files
im/types/FaceElem.ts
T

5 lines
187 B
TypeScript
Raw Normal View History

2025-12-05 16:10:52 +08:00
interface FaceElem {
index:number; // 表情下标,用户端对端自定义内嵌的表情包
data:string; // 其他表情,如 URL 表情直接返回 url
}
export default FaceElem;