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

21 lines
402 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-10-12 10:10:24 +02:00
type Recitation = {
id: string;
author: {
name: string;
nationality: string;
};
url: {
protocol: string;
hostname: string;
pathname: string;
};
};
2023-10-12 10:10:24 +02:00
export { Surah, Ayah, Ayat, Recitation, Locale, JSON };