fix: enhance recent items functionality for create actions

This commit is contained in:
Gadha2311
2025-10-17 15:03:01 +05:30
parent 7f5e2bdefd
commit 5b9cac504e
2 changed files with 13 additions and 1 deletions
+3 -1
View File
@@ -1,4 +1,4 @@
import type { ConfigFile } from 'fyo/core/types';
import type { ConfigFile, RawValueMap } from 'fyo/core/types';
export type UnknownMap = Record<string, unknown>;
export type Translation = { translation: string; context?: string };
@@ -96,4 +96,6 @@ export interface SearchItem {
group: Exclude<SearchGroup, 'Docs' | 'Recent'>;
route?: string;
action?: () => void | Promise<void>;
schemaName?: string;
initData?: RawValueMap;
}