看書一邊寫筆記:
unknown和any相近,但是如果把一個變數的值的type換成另外一種type,unknown在編譯的時候會報錯,可是any不會,unknown就像是一個label的根念。
如果定義一個function的形狀,它沒有回傳值的話(s) => console.log(s)
那定義type可以寫成 (s: string) => void
參考文章:
Using Jest and RTL with React and TypeScript
看書一邊寫筆記:
unknown和any相近,但是如果把一個變數的值的type換成另外一種type,unknown在編譯的時候會報錯,可是any不會,unknown就像是一個label的根念。
如果定義一個function的形狀,它沒有回傳值的話(s) => console.log(s)
那定義type可以寫成 (s: string) => void
參考文章:
Using Jest and RTL with React and TypeScript