Files
im/types/CustomElem.ts
T

6 lines
162 B
TypeScript
Raw Normal View History

2025-12-05 16:10:52 +08:00
interface CustomElem {
data:string; // 自定义 json string
extension:string; // 拓展信息
description:string; // 描述信息
}
export default CustomElem;