Type alias ChapterRangeSelectorProps

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

Type declaration

  • chapterCount: number
  • handleSelectEndChapter: ((chapter) => void)
      • (chapter): void
      • Parameters

        • chapter: number

        Returns void

  • handleSelectStartChapter: ((chapter) => void)
      • (chapter): void
      • Parameters

        • chapter: number

        Returns void

  • Optional isDisabled?: boolean