From e6fed1fdb5859acecd2be78d6286375c2efcc04a Mon Sep 17 00:00:00 2001 From: Azir <79054161+Azir-11@users.noreply.github.com> Date: Sun, 11 Feb 2024 13:52:03 +0800 Subject: [PATCH] fix(projects): The matched value of TabRoute should be optional --- src/typings/app.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/typings/app.d.ts b/src/typings/app.d.ts index d24a609f..df0b4484 100644 --- a/src/typings/app.d.ts +++ b/src/typings/app.d.ts @@ -170,8 +170,8 @@ declare namespace App { }; /** Tab route */ - type TabRoute = Pick & - Partial>; + type TabRoute = Pick & + Partial>; /** The global tab */ type Tab = {