@hebcal/core 5.4.8 → 5.4.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,35 +6,28 @@ export declare class Location extends GeoLocation {
6
6
  private readonly geoid?;
7
7
  /**
8
8
  * Initialize a Location instance
9
- * @param {number} latitude - Latitude as a decimal, valid range -90 thru +90 (e.g. 41.85003)
10
- * @param {number} longitude - Longitude as a decimal, valid range -180 thru +180 (e.g. -87.65005)
11
- * @param {boolean} il - in Israel (true) or Diaspora (false)
12
- * @param {string} tzid - Olson timezone ID, e.g. "America/Chicago"
13
- * @param {string} [cityName] - optional descriptive city name
14
- * @param {string} [countryCode] - ISO 3166 alpha-2 country code (e.g. "FR")
15
- * @param {string|number} [geoid] - optional string or numeric geographic ID
16
- * @param {number} [elevation] - in meters (default `0`)
9
+ * @param latitude - Latitude as a decimal, valid range -90 thru +90 (e.g. 41.85003)
10
+ * @param longitude - Longitude as a decimal, valid range -180 thru +180 (e.g. -87.65005)
11
+ * @param il - in Israel (true) or Diaspora (false)
12
+ * @param tzid - Olson timezone ID, e.g. "America/Chicago"
13
+ * @param [cityName] - optional descriptive city name
14
+ * @param [countryCode] - ISO 3166 alpha-2 country code (e.g. "FR")
15
+ * @param [geoid] - optional string or numeric geographic ID
16
+ * @param [elevation] - in meters (default `0`)
17
17
  */
18
18
  constructor(latitude: number, longitude: number, il: boolean, tzid: string, cityName?: string, countryCode?: string, geoid?: string | number, elevation?: number);
19
- /** @return {boolean} */
20
19
  getIsrael(): boolean;
21
- /** @return {string | null} */
22
20
  getName(): string | null;
23
21
  /**
24
22
  * Returns the location name, up to the first comma
25
- * @return {string | null}
26
23
  */
27
24
  getShortName(): string | null;
28
- /** @return {string | undefined} */
29
25
  getCountryCode(): string | undefined;
30
- /** @return {string} */
31
26
  getTzid(): string;
32
27
  /**
33
28
  * Gets a 24-hour time formatter (e.g. 07:41 or 20:03) for this location
34
- * @return {Intl.DateTimeFormat}
35
29
  */
36
30
  getTimeFormatter(): Intl.DateTimeFormat;
37
- /** @return {string | number | undefined} */
38
31
  getGeoId(): string | number | undefined;
39
32
  /**
40
33
  * Creates a location object from one of 60 "classic" Hebcal city names.
@@ -52,36 +45,29 @@ export declare class Location extends GeoLocation {
52
45
  * 'San Diego', 'San Francisco', 'Sao Paulo', 'Seattle', 'Sydney',
53
46
  * 'Tel Aviv', 'Tiberias', 'Toronto', 'Vancouver', 'White Plains',
54
47
  * 'Washington DC', 'Worcester'
55
- * @param {string} name
56
- * @return {Location|undefined}
48
+ * @param name
57
49
  */
58
50
  static lookup(name: string): Location | undefined;
59
- /** @return {string} */
60
51
  toString(): string;
61
52
  /**
62
53
  * Converts legacy Hebcal timezone to a standard Olson tzid.
63
- * @param {number} tz integer, GMT offset in hours
64
- * @param {string} dst 'none', 'eu', 'usa', or 'israel'
65
- * @return {string | undefined}
54
+ * @param tz integer, GMT offset in hours
55
+ * @param dst 'none', 'eu', 'usa', or 'israel'
66
56
  */
67
57
  static legacyTzToTzid(tz: number, dst: string): string | undefined;
68
58
  /**
69
59
  * Converts timezone info from Zip-Codes.com to a standard Olson tzid.
70
60
  * @example
71
61
  * Location.getUsaTzid('AZ', 7, 'Y') // 'America/Denver'
72
- * @param {string} state two-letter all-caps US state abbreviation like 'CA'
73
- * @param {number} tz positive number, 5=America/New_York, 8=America/Los_Angeles
74
- * @param {string} dst single char 'Y' or 'N'
75
- * @return {string}
62
+ * @param state two-letter all-caps US state abbreviation like 'CA'
63
+ * @param tz positive number, 5=America/New_York, 8=America/Los_Angeles
64
+ * @param dst single char 'Y' or 'N'
76
65
  */
77
66
  static getUsaTzid(state: string, tz: number, dst: string): string;
78
67
  /**
79
68
  * Adds a location name for `Location.lookup()` only if the name isn't
80
69
  * already being used. Returns `false` if the name is already taken
81
70
  * and `true` if successfully added.
82
- * @param {string} cityName
83
- * @param {Location} location
84
- * @return {boolean}
85
71
  */
86
72
  static addLocation(cityName: string, location: Location): boolean;
87
73
  }
package/dist/modern.d.ts CHANGED
@@ -7,14 +7,12 @@ import { HDate } from '@hebcal/hdate';
7
7
  * on the following Monday.
8
8
  * http://www.ushmm.org/remembrance/dor/calendar/
9
9
  * @private
10
- * @param {number} year
11
- * @return {HDate|null}
10
+ * @param year
12
11
  */
13
12
  export declare function dateYomHaShoah(year: number): HDate | null;
14
13
  /**
15
14
  * Yom HaAtzma'ut only celebrated after 1948
16
15
  * @private
17
- * @param {number} year
18
- * @return {HDate|null}
16
+ * @param year
19
17
  */
20
18
  export declare function dateYomHaZikaron(year: number): HDate | null;
package/dist/molad.d.ts CHANGED
@@ -9,42 +9,38 @@ export declare class Molad {
9
9
  private readonly m;
10
10
  /**
11
11
  * Calculates the molad for a Hebrew month
12
- * @param {number} year
13
- * @param {number} month
12
+ * @param year
13
+ * @param month
14
14
  */
15
15
  constructor(year: number, month: number);
16
16
  /**
17
- * @return {number}
18
17
  */
19
18
  getYear(): number;
20
19
  /**
21
- * @return {number}
22
20
  */
23
21
  getMonth(): number;
24
22
  /**
25
- * @return {string}
26
23
  */
27
24
  getMonthName(): string;
28
25
  /**
29
- * @return {number} Day of Week (0=Sunday, 6=Saturday)
26
+ * @returns Day of Week (0=Sunday, 6=Saturday)
30
27
  */
31
28
  getDow(): number;
32
29
  /**
33
- * @return {number} hour of day (0-23)
30
+ * @returns hour of day (0-23)
34
31
  */
35
32
  getHour(): number;
36
33
  /**
37
- * @return {number} minutes past hour (0-59)
34
+ * @returns minutes past hour (0-59)
38
35
  */
39
36
  getMinutes(): number;
40
37
  /**
41
- * @return {number} parts of a minute (0-17)
38
+ * @returns parts of a minute (0-17)
42
39
  */
43
40
  getChalakim(): number;
44
41
  /**
45
- * @param {string} [locale] Optional locale name (defaults to active locale)
46
- * @param {CalOptions} options
47
- * @return {string}
42
+ * @param [locale] Optional locale name (defaults to active locale)
43
+ * @param options
48
44
  */
49
45
  render(locale?: string, options?: CalOptions): string;
50
46
  }
@@ -53,15 +49,14 @@ export declare class MoladEvent extends Event {
53
49
  readonly molad: Molad;
54
50
  private readonly options;
55
51
  /**
56
- * @param {HDate} date Hebrew date event occurs
57
- * @param {number} hyear molad year
58
- * @param {number} hmonth molad month
59
- * @param {CalOptions} options
52
+ * @param date Hebrew date event occurs
53
+ * @param hyear molad year
54
+ * @param hmonth molad month
55
+ * @param options
60
56
  */
61
57
  constructor(date: HDate, hyear: number, hmonth: number, options: CalOptions);
62
58
  /**
63
- * @param {string} [locale] Optional locale name (defaults to active locale).
64
- * @return {string}
59
+ * @param [locale] Optional locale name (defaults to active locale).
65
60
  */
66
61
  render(locale?: string): string;
67
62
  }
package/dist/omer.d.ts CHANGED
@@ -8,38 +8,30 @@ export declare class OmerEvent extends Event {
8
8
  readonly omer: number;
9
9
  emoji?: string;
10
10
  /**
11
- * @param {HDate} date
12
- * @param {number} omerDay
11
+ * @param date
12
+ * @param omerDay
13
13
  */
14
14
  constructor(date: HDate, omerDay: number);
15
15
  /**
16
- * @param {string} lang
17
- * @return {string}
16
+ * @param lang
18
17
  */
19
18
  sefira(lang?: string): string;
20
19
  /**
21
20
  * @todo use gettext()
22
- * @param {string} [locale] Optional locale name (defaults to active locale).
23
- * @return {string}
21
+ * @param [locale] Optional locale name (defaults to active locale).
24
22
  */
25
23
  render(locale?: string): string;
26
24
  /**
27
25
  * Returns translation of "Omer day 22" without ordinal numbers.
28
- * @param {string} [locale] Optional locale name (defaults to active locale).
29
- * @return {string}
26
+ * @param [locale] Optional locale name (defaults to active locale).
30
27
  */
31
28
  renderBrief(locale?: string): string;
32
- /** @return {string} */
33
29
  getEmoji(): string;
34
- /** @return {number} */
35
30
  getWeeks(): number;
36
- /** @return {number} */
37
31
  getDaysWithinWeeks(): number;
38
32
  /**
39
- * @param {string} locale
40
- * @return {string}
33
+ * @param locale
41
34
  */
42
35
  getTodayIs(locale: string): string;
43
- /** @return {string} */
44
36
  url(): string;
45
37
  }
@@ -1,2 +1,2 @@
1
1
  /** DO NOT EDIT THIS AUTO-GENERATED FILE! */
2
- export declare const version = "5.4.8";
2
+ export declare const version = "5.4.10";
@@ -1,9 +1,8 @@
1
1
  import { CalOptions } from './CalOptions';
2
2
  /**
3
3
  * @private
4
- * @param {string} timeStr - original time like "20:30"
5
- * @param {string} suffix - "p" or "pm" or " P.M.". Add leading space if you want it
6
- * @param {CalOptions} options
7
- * @return {string}
4
+ * @param timeStr - original time like "20:30"
5
+ * @param suffix - "p" or "pm" or " P.M.". Add leading space if you want it
6
+ * @param options
8
7
  */
9
8
  export declare function reformatTimeStr(timeStr: string, suffix: string, options?: CalOptions): string;
package/dist/sedra.d.ts CHANGED
@@ -31,54 +31,45 @@ export declare class Sedra {
31
31
  private readonly theSedraArray;
32
32
  /**
33
33
  * Caculates the Parashah HaShavua for an entire Hebrew year
34
- * @param {number} hyear - Hebrew year (e.g. 5749)
35
- * @param {boolean} il - Use Israel sedra schedule (false for Diaspora)
34
+ * @param hyear - Hebrew year (e.g. 5749)
35
+ * @param il - Use Israel sedra schedule (false for Diaspora)
36
36
  */
37
37
  constructor(hyear: number, il: boolean);
38
38
  /**
39
39
  * Returns the parsha (or parshiyot) read on Hebrew date
40
- * @param {HDate|number} hd Hebrew date or R.D. days
41
- * @return {string[]}
40
+ * @param hd Hebrew date or R.D. days
42
41
  */
43
42
  get(hd: HDate | number): string[];
44
43
  /**
45
44
  * Looks up parsha for the date, then returns a translated or transliterated string
46
- * @param {HDate|number} hd Hebrew date or R.D. days
47
- * @param {string} [locale] Optional locale name (i.e: `'he'`, `'fr'`). Defaults to active locale
48
- * @return {string}
45
+ * @param hd Hebrew date or R.D. days
46
+ * @param [locale] Optional locale name (i.e: `'he'`, `'fr'`). Defaults to active locale
49
47
  */
50
48
  getString(hd: HDate | number, locale?: string): string;
51
49
  /**
52
50
  * Checks to see if this day would be a regular parasha HaShavua
53
51
  * Torah reading or special holiday reading
54
- * @param {HDate|number} hd Hebrew date or R.D. days
55
- * @return {boolean}
52
+ * @param hd Hebrew date or R.D. days
56
53
  */
57
54
  isParsha(hd: HDate | number): boolean;
58
55
  /**
59
56
  * Returns the date that a parsha occurs
60
57
  * or `null` if the parsha doesn't occur this year
61
- * @param {number|string|string[]} parsha
62
- * @return {HDate|null}
63
58
  */
64
59
  find(parsha: number | string | string[]): HDate | null;
65
60
  /**
66
61
  * Returns the underlying annual sedra schedule.
67
62
  * Used by `@hebcal/triennial`
68
- * @return {NumberOrString[]}
69
63
  */
70
64
  getSedraArray(): NumberOrString[];
71
65
  /**
72
66
  * R.D. date of the first Saturday on or after Rosh Hashana
73
- * @return {number}
74
67
  */
75
68
  getFirstSaturday(): number;
76
- /** @return {number} */
77
69
  getYear(): number;
78
70
  /**
79
71
  * Returns an object describing the parsha on the first Saturday on or after `hd`
80
- * @param {HDate|number} hd Hebrew date or R.D. days
81
- * @return {SedraResult}
72
+ * @param hd Hebrew date or R.D. days
82
73
  */
83
74
  lookup(hd: HDate | number): SedraResult;
84
75
  }
@@ -94,9 +85,8 @@ type NumberOrString = number | string;
94
85
  * Convenience function to create an instance of `Sedra` or reuse a previously
95
86
  * created and cached instance.
96
87
  * @private
97
- * @param {number} hyear
98
- * @param {boolean} il
99
- * @return {Sedra}
88
+ * @param hyear
89
+ * @param il
100
90
  */
101
91
  export declare function getSedra_(hyear: number, il: boolean): Sedra;
102
92
  export {};
@@ -5,153 +5,153 @@
5
5
  */
6
6
  export declare const holidayDesc: {
7
7
  /** Asara B'Tevet */
8
- ASARA_BTEVET: string;
8
+ readonly ASARA_BTEVET: "Asara B'Tevet";
9
9
  /** Birkat Hachamah */
10
- BIRKAT_HACHAMAH: string;
10
+ readonly BIRKAT_HACHAMAH: "Birkat Hachamah";
11
11
  /** Chag HaBanot */
12
- CHAG_HABANOT: string;
12
+ readonly CHAG_HABANOT: "Chag HaBanot";
13
13
  /** Chanukah: 8th Day */
14
- CHANUKAH_8TH_DAY: string;
14
+ readonly CHANUKAH_8TH_DAY: "Chanukah: 8th Day";
15
15
  /** Erev Tish'a B'Av */
16
- EREV_TISHA_BAV: string;
16
+ readonly EREV_TISHA_BAV: "Erev Tish'a B'Av";
17
17
  /** Leil Selichot */
18
- LEIL_SELICHOT: string;
18
+ readonly LEIL_SELICHOT: "Leil Selichot";
19
19
  /** Purim Katan */
20
- PURIM_KATAN: string;
20
+ readonly PURIM_KATAN: "Purim Katan";
21
21
  /** Purim Meshulash */
22
- PURIM_MESHULASH: string;
22
+ readonly PURIM_MESHULASH: "Purim Meshulash";
23
23
  /** Shabbat Chazon */
24
- SHABBAT_CHAZON: string;
24
+ readonly SHABBAT_CHAZON: "Shabbat Chazon";
25
25
  /** Shabbat HaChodesh */
26
- SHABBAT_HACHODESH: string;
26
+ readonly SHABBAT_HACHODESH: "Shabbat HaChodesh";
27
27
  /** Shabbat HaGadol */
28
- SHABBAT_HAGADOL: string;
28
+ readonly SHABBAT_HAGADOL: "Shabbat HaGadol";
29
29
  /** Shabbat Nachamu */
30
- SHABBAT_NACHAMU: string;
30
+ readonly SHABBAT_NACHAMU: "Shabbat Nachamu";
31
31
  /** Shabbat Parah */
32
- SHABBAT_PARAH: string;
32
+ readonly SHABBAT_PARAH: "Shabbat Parah";
33
33
  /** Shabbat Shekalim */
34
- SHABBAT_SHEKALIM: string;
34
+ readonly SHABBAT_SHEKALIM: "Shabbat Shekalim";
35
35
  /** Shabbat Shirah */
36
- SHABBAT_SHIRAH: string;
36
+ readonly SHABBAT_SHIRAH: "Shabbat Shirah";
37
37
  /** Shabbat Shuva */
38
- SHABBAT_SHUVA: string;
38
+ readonly SHABBAT_SHUVA: "Shabbat Shuva";
39
39
  /** Shabbat Zachor */
40
- SHABBAT_ZACHOR: string;
40
+ readonly SHABBAT_ZACHOR: "Shabbat Zachor";
41
41
  /** Shushan Purim Katan */
42
- SHUSHAN_PURIM_KATAN: string;
42
+ readonly SHUSHAN_PURIM_KATAN: "Shushan Purim Katan";
43
43
  /** Ta'anit Bechorot */
44
- TAANIT_BECHOROT: string;
44
+ readonly TAANIT_BECHOROT: "Ta'anit Bechorot";
45
45
  /** Ta'anit Esther */
46
- TAANIT_ESTHER: string;
46
+ readonly TAANIT_ESTHER: "Ta'anit Esther";
47
47
  /** Tish'a B'Av */
48
- TISHA_BAV: string;
48
+ readonly TISHA_BAV: "Tish'a B'Av";
49
49
  /** Tzom Gedaliah */
50
- TZOM_GEDALIAH: string;
50
+ readonly TZOM_GEDALIAH: "Tzom Gedaliah";
51
51
  /** Tzom Tammuz */
52
- TZOM_TAMMUZ: string;
52
+ readonly TZOM_TAMMUZ: "Tzom Tammuz";
53
53
  /** Yom HaAtzma'ut */
54
- YOM_HAATZMA_UT: string;
54
+ readonly YOM_HAATZMA_UT: "Yom HaAtzma'ut";
55
55
  /** Yom HaShoah */
56
- YOM_HASHOAH: string;
56
+ readonly YOM_HASHOAH: "Yom HaShoah";
57
57
  /** Yom HaZikaron */
58
- YOM_HAZIKARON: string;
58
+ readonly YOM_HAZIKARON: "Yom HaZikaron";
59
59
  /** Ben-Gurion Day */
60
- BEN_GURION_DAY: string;
60
+ readonly BEN_GURION_DAY: "Ben-Gurion Day";
61
61
  /** Chanukah: 1 Candle */
62
- CHANUKAH_1_CANDLE: string;
62
+ readonly CHANUKAH_1_CANDLE: "Chanukah: 1 Candle";
63
63
  /** Erev Pesach */
64
- EREV_PESACH: string;
64
+ readonly EREV_PESACH: "Erev Pesach";
65
65
  /** Erev Purim */
66
- EREV_PURIM: string;
66
+ readonly EREV_PURIM: "Erev Purim";
67
67
  /** Erev Rosh Hashana */
68
- EREV_ROSH_HASHANA: string;
68
+ readonly EREV_ROSH_HASHANA: "Erev Rosh Hashana";
69
69
  /** Erev Shavuot */
70
- EREV_SHAVUOT: string;
70
+ readonly EREV_SHAVUOT: "Erev Shavuot";
71
71
  /** Erev Sukkot */
72
- EREV_SUKKOT: string;
72
+ readonly EREV_SUKKOT: "Erev Sukkot";
73
73
  /** Erev Yom Kippur */
74
- EREV_YOM_KIPPUR: string;
74
+ readonly EREV_YOM_KIPPUR: "Erev Yom Kippur";
75
75
  /** Family Day */
76
- FAMILY_DAY: string;
76
+ readonly FAMILY_DAY: "Family Day";
77
77
  /** Hebrew Language Day */
78
- HEBREW_LANGUAGE_DAY: string;
78
+ readonly HEBREW_LANGUAGE_DAY: "Hebrew Language Day";
79
79
  /** Herzl Day */
80
- HERZL_DAY: string;
80
+ readonly HERZL_DAY: "Herzl Day";
81
81
  /** Jabotinsky Day */
82
- JABOTINSKY_DAY: string;
82
+ readonly JABOTINSKY_DAY: "Jabotinsky Day";
83
83
  /** Lag BaOmer */
84
- LAG_BAOMER: string;
84
+ readonly LAG_BAOMER: "Lag BaOmer";
85
85
  /** Pesach I */
86
- PESACH_I: string;
86
+ readonly PESACH_I: "Pesach I";
87
87
  /** Pesach II */
88
- PESACH_II: string;
88
+ readonly PESACH_II: "Pesach II";
89
89
  /** Pesach III (CH''M) */
90
- PESACH_III_CHM: string;
90
+ readonly PESACH_III_CHM: "Pesach III (CH''M)";
91
91
  /** Pesach II (CH''M) */
92
- PESACH_II_CHM: string;
92
+ readonly PESACH_II_CHM: "Pesach II (CH''M)";
93
93
  /** Pesach IV (CH''M) */
94
- PESACH_IV_CHM: string;
94
+ readonly PESACH_IV_CHM: "Pesach IV (CH''M)";
95
95
  /** Pesach Sheni */
96
- PESACH_SHENI: string;
96
+ readonly PESACH_SHENI: "Pesach Sheni";
97
97
  /** Pesach VII */
98
- PESACH_VII: string;
98
+ readonly PESACH_VII: "Pesach VII";
99
99
  /** Pesach VIII */
100
- PESACH_VIII: string;
100
+ readonly PESACH_VIII: "Pesach VIII";
101
101
  /** Pesach VI (CH''M) */
102
- PESACH_VI_CHM: string;
102
+ readonly PESACH_VI_CHM: "Pesach VI (CH''M)";
103
103
  /** Pesach V (CH''M) */
104
- PESACH_V_CHM: string;
104
+ readonly PESACH_V_CHM: "Pesach V (CH''M)";
105
105
  /** Purim */
106
- PURIM: string;
106
+ readonly PURIM: "Purim";
107
107
  /** Rosh Hashana II */
108
- ROSH_HASHANA_II: string;
108
+ readonly ROSH_HASHANA_II: "Rosh Hashana II";
109
109
  /** Rosh Hashana LaBehemot */
110
- ROSH_HASHANA_LABEHEMOT: string;
110
+ readonly ROSH_HASHANA_LABEHEMOT: "Rosh Hashana LaBehemot";
111
111
  /** Shavuot */
112
- SHAVUOT: string;
112
+ readonly SHAVUOT: "Shavuot";
113
113
  /** Shavuot I */
114
- SHAVUOT_I: string;
114
+ readonly SHAVUOT_I: "Shavuot I";
115
115
  /** Shavuot II */
116
- SHAVUOT_II: string;
116
+ readonly SHAVUOT_II: "Shavuot II";
117
117
  /** Shmini Atzeret */
118
- SHMINI_ATZERET: string;
118
+ readonly SHMINI_ATZERET: "Shmini Atzeret";
119
119
  /** Shushan Purim */
120
- SHUSHAN_PURIM: string;
120
+ readonly SHUSHAN_PURIM: "Shushan Purim";
121
121
  /** Sigd */
122
- SIGD: string;
122
+ readonly SIGD: "Sigd";
123
123
  /** Simchat Torah */
124
- SIMCHAT_TORAH: string;
124
+ readonly SIMCHAT_TORAH: "Simchat Torah";
125
125
  /** Sukkot I */
126
- SUKKOT_I: string;
126
+ readonly SUKKOT_I: "Sukkot I";
127
127
  /** Sukkot II */
128
- SUKKOT_II: string;
128
+ readonly SUKKOT_II: "Sukkot II";
129
129
  /** Sukkot III (CH''M) */
130
- SUKKOT_III_CHM: string;
130
+ readonly SUKKOT_III_CHM: "Sukkot III (CH''M)";
131
131
  /** Sukkot II (CH''M) */
132
- SUKKOT_II_CHM: string;
132
+ readonly SUKKOT_II_CHM: "Sukkot II (CH''M)";
133
133
  /** Sukkot IV (CH''M) */
134
- SUKKOT_IV_CHM: string;
134
+ readonly SUKKOT_IV_CHM: "Sukkot IV (CH''M)";
135
135
  /** Sukkot VII (Hoshana Raba) */
136
- SUKKOT_VII_HOSHANA_RABA: string;
136
+ readonly SUKKOT_VII_HOSHANA_RABA: "Sukkot VII (Hoshana Raba)";
137
137
  /** Sukkot VI (CH''M) */
138
- SUKKOT_VI_CHM: string;
138
+ readonly SUKKOT_VI_CHM: "Sukkot VI (CH''M)";
139
139
  /** Sukkot V (CH''M) */
140
- SUKKOT_V_CHM: string;
140
+ readonly SUKKOT_V_CHM: "Sukkot V (CH''M)";
141
141
  /** Tu B\'Av */
142
- TU_BAV: string;
142
+ readonly TU_BAV: "Tu B'Av";
143
143
  /** Tu BiShvat */
144
- TU_BISHVAT: string;
144
+ readonly TU_BISHVAT: "Tu BiShvat";
145
145
  /** Yitzhak Rabin Memorial Day */
146
- YITZHAK_RABIN_MEMORIAL_DAY: string;
146
+ readonly YITZHAK_RABIN_MEMORIAL_DAY: "Yitzhak Rabin Memorial Day";
147
147
  /** Yom HaAliyah */
148
- YOM_HAALIYAH: string;
148
+ readonly YOM_HAALIYAH: "Yom HaAliyah";
149
149
  /** Yom HaAliyah School Observance */
150
- YOM_HAALIYAH_SCHOOL_OBSERVANCE: string;
150
+ readonly YOM_HAALIYAH_SCHOOL_OBSERVANCE: "Yom HaAliyah School Observance";
151
151
  /** Yom Kippur */
152
- YOM_KIPPUR: string;
152
+ readonly YOM_KIPPUR: "Yom Kippur";
153
153
  /** Yom Yerushalayim */
154
- YOM_YERUSHALAYIM: string;
154
+ readonly YOM_YERUSHALAYIM: "Yom Yerushalayim";
155
155
  };
156
156
  export interface Holiday {
157
157
  mm: number;