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

9 lines
213 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[];
export { Surah, Ayah, Ayat, Locale, JSON };