Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.6k views
in Technique[技术] by (71.8m points)

ts可以取interface中某个成员的类型吗?

比如,取下面searchWord的类型?

interface IStore<T> {
  dataSource: T[]
  searchWord: string
  searchRegExp: RegExp
  options: IOption
}

以前对于这种需求,都是单独再提取一次,比较麻烦

另外在使用第三方库的时候,比如antd,去找某个参数的成员类型就比较麻烦,得点进源码里跳来跳去

有没有大神给看看,或者有变通的方法?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

type Word = IStore<any>['searchWord']


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...