al-quran.reflectslight.io/src/js/lib/Quran.ts
2023-10-13 00:37:16 -03:00

20 lines
402 B
TypeScript

import * as JSON from "lib/Quran/JSON";
import { Ayah } from "lib/Quran/Ayah";
import { Surah } from "lib/Quran/Surah";
type Locale = "ar" | "en";
type Ayat = Ayah[];
type Recitation = {
id: string;
author: {
name: string;
nationality: string;
};
url: {
protocol: string;
hostname: string;
pathname: string;
};
};
export { Surah, Ayah, Ayat, Recitation, Locale, JSON };