标签: typescript
我最近遇到了这个定义:
const Default = ({ something }: { something: {} }) => ( //....
我了解该类型,它是一种匿名类型,其类型对象的属性为something。我不明白的是价值,为什么用{something}而不是something
something
{something}