From 5fc44b97c6a553e8d5a157f9679213fcab271c1e Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Thu, 14 Sep 2023 18:43:14 +0200 Subject: [PATCH] chore(CommandPalette): add `search?` function to types --- src/runtime/types/command-palette.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/runtime/types/command-palette.d.ts b/src/runtime/types/command-palette.d.ts index b35f6609..53dd847c 100644 --- a/src/runtime/types/command-palette.d.ts +++ b/src/runtime/types/command-palette.d.ts @@ -21,6 +21,7 @@ export interface Group { key: string active?: string inactive?: string - commands: Command[] + commands?: Command[] + search?: Function [key: string]: any }