@bible-api/bible-api
Version:
A simple API for the Bible
12 lines (11 loc) • 515 B
TypeScript
import { GetPassageOptions, GetVerseOptions, Passage, Verse } from './BibleVersion';
type RemoteBibleVersion = 'KJV1769' | 'TR1624' | 'TR1894';
interface RequestVerseOptions extends GetVerseOptions {
version: RemoteBibleVersion;
}
interface RequestPassageOptions extends GetPassageOptions {
version: RemoteBibleVersion;
}
export declare function requestVerse(options: RequestVerseOptions): Promise<Verse>;
export declare function requestPassage(options: RequestPassageOptions): Promise<Passage>;
export {};