UNPKG

a11y-player

Version:

An accessible DAISY format audiobook player for React applications

11 lines (10 loc) 265 B
import { SectionsHolder } from '../utils/sections'; type BookInfo = { title: string; author: string; }; declare const useSectionData: (dirUrl: string) => { sectionsHolder: SectionsHolder; bookInfo: BookInfo | null; }; export default useSectionData;