Closed MofuMofu2 closed 1 year ago
REST APIから以下のようなユーザーデータが返ってくるとします。
{ "id": 1, "name": "John Doe", "email": "john.doe@example.com", "isAdmin": false, "posts": [ { "postId": 101, "title": "My first post", "content": "This is the content of my first post." } ] }
このデータの型をTypeScriptで定義してみましょう。
postsの部分は今後それを取り出す、みたいな処理が出てきたことを考えてPostsとして定義する。
1. 基本の型定義
REST APIから以下のようなユーザーデータが返ってくるとします。
このデータの型をTypeScriptで定義してみましょう。