Skip to content

Commit 72792cf

Browse files
committed
Complete Problem total-typescript#7
1 parent 8f28a6b commit 72792cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/07-arrays.problem.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ interface User {
33
firstName: string;
44
lastName: string;
55
role: "admin" | "user" | "super-admin";
6-
posts: Post;
6+
posts: Array<Post>;
77
}
88

99
interface Post {

0 commit comments

Comments
 (0)