platform-bible-react
    Preparing search index...

    Type Alias ChapterRangeSelectorProps

    type ChapterRangeSelectorProps = {
        chapterCount: number;
        endChapter: number;
        handleSelectEndChapter: (chapter: number) => void;
        handleSelectStartChapter: (chapter: number) => void;
        isDisabled?: boolean;
        startChapter: number;
    }
    Index

    Properties

    chapterCount: number

    The total number of chapters available

    endChapter: number

    The selected end chapter

    handleSelectEndChapter: (chapter: number) => void

    Callback function to handle the selection of the end chapter

    handleSelectStartChapter: (chapter: number) => void

    Callback function to handle the selection of the start chapter

    isDisabled?: boolean

    Flag to disable the component

    startChapter: number

    The selected start chapter