SearchNavigationResult.ts 324 B

12345678910111213141516
  1. export enum SearchNavigationType {
  2. SURAH = 'surah',
  3. JUZ = 'juz',
  4. HIZB = 'hizb',
  5. AYAH = 'ayah',
  6. RUB_EL_HIZB = 'rub_el_hizb',
  7. SEARCH_PAGE = 'search_page',
  8. PAGE = 'page',
  9. RANGE = 'range',
  10. }
  11. export interface SearchNavigationResult {
  12. resultType: SearchNavigationType;
  13. name: string;
  14. key: number | string;
  15. }