chore(react/ribbon): save search to note

This commit is contained in:
Elian Doran
2025-08-24 16:56:22 +03:00
parent 3f105f7b8b
commit 04fbc82d7c
6 changed files with 35 additions and 59 deletions

View File

@@ -193,3 +193,12 @@ export interface SimilarNote {
}
export type SimilarNoteResponse = (SimilarNote[] | undefined);
export type SaveSearchNoteResponse = CloneResponse;
export interface CloneResponse {
success: boolean;
message?: string;
branchId?: string;
notePath?: string;
}