From 28586c35a558d9e925094f86e07acdb928d54ad7 Mon Sep 17 00:00:00 2001 From: Baptiste Leproux Date: Wed, 2 Nov 2022 16:04:50 +0100 Subject: [PATCH] fix(types): add missing field in command palette type (#111) --- src/runtime/types/command-palette.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/runtime/types/command-palette.d.ts b/src/runtime/types/command-palette.d.ts index b62690738c..2a5af82cb5 100644 --- a/src/runtime/types/command-palette.d.ts +++ b/src/runtime/types/command-palette.d.ts @@ -14,6 +14,7 @@ export interface Command { group?: string score?: number matches?: (FuseSortFunctionMatch | FuseSortFunctionMatchList)[] + [key: string]: any } export interface Group { @@ -22,4 +23,5 @@ export interface Group { inactive?: string commands: Command[] options?: Partial> + [key: string]: any }