platform-bible-utils
    Preparing search index...

    Interface BookInfo

    Represents a book, with its short name (e.g. "Gen") and full names (e.g. "Genesis"), and number of chapters.

    interface BookInfo {
        chapters: number;
        fullNames: string[];
        shortName: string;
    }
    Index

    Properties

    chapters: number
    fullNames: string[]
    shortName: string