标签: typescript
我有这样的物体:
const OBJ = { a: { item: "htmlId1" }, b: "htmlId2", c: { d: { e: "htmlId3", }, }, }
然后我转换这个对象。我将所有ID替换为另一个对象(我有该对象的接口),但是有什么方法可以更改类型typeof OBJ来将所有字符串类型替换为MyInterface类型
typeof OBJ
MyInterface