fix: align note list model event types

This commit is contained in:
lucaronin
2026-04-16 02:21:55 +02:00
parent bbf98d6112
commit b8dfc79e80

View File

@@ -275,8 +275,8 @@ interface UseRenderItemParams {
isChangesView: boolean
onDiscardFile?: (relativePath: string) => Promise<void>
resolvedGetNoteStatus: (path: string) => NoteStatus
getChangeStatus: (path: string) => string | undefined
handleClickNote: (entry: VaultEntry, event?: React.MouseEvent) => void
getChangeStatus: (path: string) => ModifiedFile['status'] | undefined
handleClickNote: (entry: VaultEntry, event: React.MouseEvent) => void
noteContextMenu?: ((entry: VaultEntry, event: React.MouseEvent) => void) | undefined
multiSelect: MultiSelectState
noteListKeyboard: { highlightedPath: string | null }