From 00bb504ebf5a500a5cdf85471c4d45bc84b9bc7b Mon Sep 17 00:00:00 2001 From: "toantran.mei" Date: Sun, 5 May 2024 11:11:40 +0700 Subject: [PATCH] fix: remove force types in command palette group META DATA: @toantranmei --- src/runtime/types/command-palette.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/types/command-palette.ts b/src/runtime/types/command-palette.ts index f8d2c05..56fcd33 100644 --- a/src/runtime/types/command-palette.ts +++ b/src/runtime/types/command-palette.ts @@ -13,7 +13,7 @@ export interface Command { shortcuts?: string[] group?: string score?: number - matches?: (FuseSortFunctionMatch | FuseSortFunctionMatchList)[] + matches?: (FuseSortFunctionMatch | FuseSortFunctionMatchList)[] | any[] [key: string]: any }