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

10 lines
301 B
TypeScript
Raw Normal View History

2023-02-28 07:29:57 +01:00
import * as JSON from 'lib/Quran/JSON';
2023-03-12 03:32:30 +01:00
import { Ayah } from 'lib/Quran/Ayah';
2023-02-28 07:29:57 +01:00
import { Surah } from 'lib/Quran/Surah';
type Locale = 'ar' | 'en';
type Ayat = Ayah[];
2023-03-27 17:24:46 +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 };