Function overloading and type inference in typescript

后端 未结 0 1722
不思量自难忘°
不思量自难忘° 2021-02-07 05:42

I have this type:

type Bar = number;
type Foo = {
   doIt: ((value: string) => Bar) | ((value: string, provideBar: (bar: Bar) => void) => void);
}


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题