al-quran.reflectslight.io/src/js/lib/Quran.ts

10 lines
301 B
TypeScript
Raw Normal View History

2023-07-13 19:06:51 +02:00
import * as JSON from "lib/Quran/JSON";
import { Ayah } from "lib/Quran/Ayah";
import { Surah } from "lib/Quran/Surah";
2023-07-13 19:06:51 +02:00
type Locale = "ar" | "en";
type Ayat = Ayah[];
2023-07-13 19:06:51 +02:00
type Reciter = { id: string; name: string; nationality: string; url: string };
2023-03-27 17:24:46 +02:00
export { Surah, Ayah, Ayat, Reciter, Locale, JSON };