Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

比如,取下面searchWord的类型?

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

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

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

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.7k views
Welcome To Ask or Share your Answers For Others

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...