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 }