taglib-ts
    Preparing search index...

    Represents one ordered-chapters edition inside a Chapters element.

    interface ChapterEdition {
        chapters: Chapter[];
        isDefault: boolean;
        isOrdered: boolean;
        uid: number;
    }
    Index

    Properties

    chapters: Chapter[]

    Chapters belonging to this edition.

    isDefault: boolean

    Whether this is the default edition.

    isOrdered: boolean

    Whether chapters within this edition are ordered.

    uid: number

    Unique ID for this edition (0 = none).