ChaptersData.ts 109 B

12345
  1. import Chapter from './Chapter';
  2. type ChaptersData = Record<string, Chapter>;
  3. export default ChaptersData;