UNPKG

books-of-the-bible

Version:

An ordered list of the names of the books of the bible, with common abbreviations

9 lines (6 loc) 146 B
export interface BibleBook { name: string; aliases: string[]; } declare const booksOfTheBible: BibleBook[]; export default booksOfTheBible;