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

9 lines
237 B
TypeScript
Raw Normal View History

2023-02-28 07:29:57 +01:00
import * as JSON from 'lib/Quran/JSON';
import { Surah } from 'lib/Quran/Surah';
type Locale = 'ar' | 'en';
2023-02-28 07:29:57 +01:00
interface Ayah {id: number, text: string, readTimeMs: number }
type Ayat = Ayah[];
export { Surah, Ayah, Ayat, Locale, JSON };