From 5f3707783551b07ee07718bf98b74b48786cab8e Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Mon, 20 Feb 2023 18:05:39 +0100 Subject: [PATCH] types(CommandPalette): options no longer exists --- 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 2a5af82c..5b34ef21 100644 --- a/src/runtime/types/command-palette.d.ts +++ b/src/runtime/types/command-palette.d.ts @@ -1,6 +1,7 @@ import type { UseFuseOptions } from '@vueuse/integrations/useFuse' import type { FuseSortFunctionMatch, FuseSortFunctionMatchList } from 'fuse.js' import type { Avatar } from './avatar' + export interface Command { id: string | number prefix?: string @@ -22,6 +23,5 @@ export interface Group { active?: string inactive?: string commands: Command[] - options?: Partial> [key: string]: any }