Interface Chapter

This interface represents a chapter, including its optional title, description, and an optional array of linked sub-chapters.

interface Chapter {
    title?: string;
    description?: string;
    chapters?: Linked<Chapter>[];
}

Properties

title?: string

The optional title of the chapter

description?: string

An optional description of the chapter

chapters?: Linked<Chapter>[]

An optional array of linked sub-chapters