Interface FileReadyPropsInternal

Props for the FileReadyContent component.

interface FileReadyProps {
importData: KenmeiData;
statusCounts: StatusCounts;
previousMatchCount: number;
isLoading: boolean;
onImport: () => void;
onReset: () => void;
}
interface FileReadyProps {
    importData: KenmeiData;
    statusCounts: StatusCounts;
    previousMatchCount: number;
    isLoading: boolean;
    onImport: () => void;
    onReset: () => void;
}

Properties

importData: KenmeiData

KenmeiData ready for import processing.

statusCounts: StatusCounts

Breakdown of manga count by status.

previousMatchCount: number

Number of previously matched entries.

isLoading: boolean

Whether import process is in progress.

onImport: () => void

Callback when user initiates import.

onReset: () => void

Callback to reset import state.