From e24cba632d7578fa938ce0ba3fab0cf4aa2bbc80 Mon Sep 17 00:00:00 2001 From: mohiit1502 Date: Thu, 15 Jun 2023 16:21:22 +0530 Subject: [PATCH] Updated routeconfig type --- src/app/types/route.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/types/route.d.ts b/src/app/types/route.d.ts index 2e08438..29a8471 100644 --- a/src/app/types/route.d.ts +++ b/src/app/types/route.d.ts @@ -1,6 +1,6 @@ interface RouteConfig { path: String - class: String + class?: String element: String | JSX.Element | null - children?: RouteConfig[] + children?: Array }