From 4ff5acb23863e0993c89635909f09e818132c0c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Federico=20Seit=C3=BAn?= Date: Fri, 26 Aug 2022 09:54:25 -0300 Subject: [PATCH] Add new solution to problem 07 --- src/{07-arrays.solution.2.ts => 07-arrays.solution.3.ts} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename src/{07-arrays.solution.2.ts => 07-arrays.solution.3.ts} (94%) diff --git a/src/07-arrays.solution.2.ts b/src/07-arrays.solution.3.ts similarity index 94% rename from src/07-arrays.solution.2.ts rename to src/07-arrays.solution.3.ts index b1400944..e5f07193 100644 --- a/src/07-arrays.solution.2.ts +++ b/src/07-arrays.solution.3.ts @@ -3,7 +3,7 @@ interface User { firstName: string; lastName: string; role: "admin" | "user" | "super-admin"; - posts: Array; + posts: [Post]; } interface Post {