MofuMofu2 / typescript-sandbox

MIT License
0 stars 0 forks source link

基本の型定義 #65

Closed MofuMofu2 closed 1 year ago

MofuMofu2 commented 1 year ago

1. 基本の型定義

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で定義してみましょう。

MofuMofu2 commented 1 year ago

postsの部分は今後それを取り出す、みたいな処理が出てきたことを考えてPostsとして定義する。