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 }