Skip to content

Commit

Permalink
feature: #45 お題に沿った処理を書いた
Browse files Browse the repository at this point in the history
  • Loading branch information
MofuMofu2 committed Sep 20, 2023
1 parent 9d58cb4 commit d2f89ad
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/practice-types/practice-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,11 @@ type User = {
id: number;
active: boolean;
};

const user: User = {
name: "mofu",
id: 1,
active: true,
};

console.log(user);

0 comments on commit d2f89ad

Please sign in to comment.