export interface Chapter { name: string, description: string, chapterNum: number, to: string } const chapters: Chapter[] = [ { name: 'learning.chapter.math.title', description: 'learning.chapter.math.description', chapterNum: 1, to: 'learning/math' }, { name: 'learning.chapter.tf.title', description: 'learning.chapter.tf.description', chapterNum: 2, to: 'learning/tf' } ] export default chapters