前提・実現したいこと
typescript,Reactの学習中です。
ヘルシンキ大学のfull stack open 2019を、typescriptで進めています。
現在part2です。
state hooksの引数に配列を取りたいのですが、never型となりコンパイルエラーが発生します。
never型ではない型に指定することはできるのでしょうか。
発生している問題・エラーメッセージ
Argument of type 'never[]' is not assignable to parameter of type 'NotesProps | (() => NotesProps)'. Type 'never[]' is not assignable to type '() => NotesProps'. Type 'never[]' provides no match for the signature '(): NotesProps'. TS2345 13 | 14 | const App = () => { > 15 | const [notes, setNotes] = useState<NotesProps>([]) | ^ 16 | const [newNote, setNewNote] = useState('') 17 | const [showAll, setShowAll] = useState(true) 18 |
該当のソースコード
typescript
1type NotesProps = { 2 notes: { 3 id: number, 4 content: string, 5 date: string, 6 important: boolean 7 }[] 8} 9 10const App = () => { 11 const [notes, setNotes] = useState<NotesProps>([]) 12 const [newNote, setNewNote] = useState('') 13 const [showAll, setShowAll] = useState(true) 14 15// ...
試したこと
<NoteProps>の部分を消してみると、別のnotesを利用するところで同様にnever型なので駄目だという旨のエラーが発生しました。
ここのタイプの指定はやはり必要なものなのではと思います。
補足情報(FW/ツールのバージョンなど)
react: 16.9.0
typescript: 3.6.3
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/14 17:04