misc type fixes, album artist header page favorite/rating work now

This commit is contained in:
Kendall Garner
2026-02-01 22:04:46 -08:00
parent ba835bec3e
commit d2d8ea8249
5 changed files with 9 additions and 15 deletions
@@ -109,6 +109,7 @@ export interface ItemListStateItem {
_itemType: LibraryItem;
_serverId: string;
id: string;
imageId: null | string;
}
export type ItemListStateItemWithRequiredProperties = Record<string, unknown> & {
@@ -1,6 +1,7 @@
import { useEffect, useImperativeHandle, useMemo } from 'react';
import { ItemListHandle, ItemListStateActions } from '/@/renderer/components/item-list/types';
import { ItemListStateActions } from '/@/renderer/components/item-list/helpers/item-list-state';
import { ItemListHandle } from '/@/renderer/components/item-list/types';
interface UseTableImperativeHandleProps {
enableHeader: boolean;