interface CustomListEntriesEditorProps {
    addAllEntries?: () => void;
    addEntry?: (id: string) => void;
    autoUpdate?: boolean;
    autoUpdateStatus?: string;
    deleteAllEntries?: () => void;
    deleteEntry?: (id: string) => void;
    entries?: Entry[];
    entryCount?: number;
    isFetchingMoreCustomListEntries: boolean;
    isFetchingMoreSearchResults: boolean;
    isFetchingSearchResults: boolean;
    isOwner?: boolean;
    isSearchModified?: boolean;
    listId?: string | number;
    loadMoreEntries: () => void;
    loadMoreSearchResults: () => void;
    opdsFeedUrl?: string;
    refreshResults?: () => void;
    searchResults?: CollectionData;
}

Properties

addAllEntries?: () => void
addEntry?: (id: string) => void
autoUpdate?: boolean
autoUpdateStatus?: string
deleteAllEntries?: () => void
deleteEntry?: (id: string) => void
entries?: Entry[]
entryCount?: number
isFetchingMoreCustomListEntries: boolean
isFetchingMoreSearchResults: boolean
isFetchingSearchResults: boolean
isOwner?: boolean
isSearchModified?: boolean
listId?: string | number
loadMoreEntries: () => void
loadMoreSearchResults: () => void
opdsFeedUrl?: string
refreshResults?: () => void
searchResults?: CollectionData