Interface MangaSearchPanelPropsInternal

Props for the MangaSearchPanel component.

export interface MangaSearchPanelProps {
kenmeiManga?: KenmeiManga;
onClose: () => void;
onSelectMatch: (manga: AniListManga) => void;
token?: string;
bypassCache?: boolean;
}
interface MangaSearchPanelProps {
    kenmeiManga?: KenmeiManga;
    onClose: () => void;
    onSelectMatch: (manga: AniListManga) => void;
    token?: string;
    bypassCache?: boolean;
}

Properties

kenmeiManga?: KenmeiManga

The Kenmei manga to search for a match (optional).

onClose: () => void

Callback to close the search panel.

onSelectMatch: (manga: AniListManga) => void

Callback when a manga match is selected.

token?: string

AniList access token (optional).

bypassCache?: boolean

Whether to bypass the cache for searching (optional).