feat(react/floating_buttons): port backlinks

This commit is contained in:
Elian Doran
2025-08-28 17:32:29 +03:00
parent 1766d28fc2
commit a95e28c085
6 changed files with 151 additions and 183 deletions

View File

@@ -208,3 +208,15 @@ export interface ConvertToAttachmentResponse {
}
export type SaveSqlConsoleResponse = CloneResponse;
export interface BacklinkCountResponse {
count: number;
}
export type BacklinksResponse = ({
noteId: string;
relationName: string;
} | {
noteId: string;
excerpts: string[]
})[];