From d466611da544bd5cbfbca64b80005c420ec3cd08 Mon Sep 17 00:00:00 2001 From: Baptiste Leproux Date: Wed, 2 Nov 2022 15:56:06 +0100 Subject: [PATCH] up --- src/runtime/types/command-palette.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/types/command-palette.d.ts b/src/runtime/types/command-palette.d.ts index 00a4f614d5..2a5af82cb5 100644 --- a/src/runtime/types/command-palette.d.ts +++ b/src/runtime/types/command-palette.d.ts @@ -3,7 +3,6 @@ import type { FuseSortFunctionMatch, FuseSortFunctionMatchList } from 'fuse.js' import type { Avatar } from './avatar' export interface Command { id: string | number - label?: string prefix?: string suffix?: string icon?: string @@ -15,6 +14,7 @@ export interface Command { group?: string score?: number matches?: (FuseSortFunctionMatch | FuseSortFunctionMatchList)[] + [key: string]: any } export interface Group {