types(CommandPalette): options no longer exists

This commit is contained in:
Benjamin Canac
2023-02-20 18:05:39 +01:00
parent 948f4b89b1
commit 5f37077835

View File

@@ -1,6 +1,7 @@
import type { UseFuseOptions } from '@vueuse/integrations/useFuse' import type { UseFuseOptions } from '@vueuse/integrations/useFuse'
import type { FuseSortFunctionMatch, FuseSortFunctionMatchList } from 'fuse.js' import type { FuseSortFunctionMatch, FuseSortFunctionMatchList } from 'fuse.js'
import type { Avatar } from './avatar' import type { Avatar } from './avatar'
export interface Command { export interface Command {
id: string | number id: string | number
prefix?: string prefix?: string
@@ -22,6 +23,5 @@ export interface Group {
active?: string active?: string
inactive?: string inactive?: string
commands: Command[] commands: Command[]
options?: Partial<UseFuseOptions<Command>>
[key: string]: any [key: string]: any
} }