标签: typescript
让我说我有一个功能
doSomething(param: ???) { param.test }
如何确保param是具有test作为属性之一的字符串的对象?
test
const myParam = { test: '123', ... }