Skip to content

Commit 644b065

Browse files
committed
Add Chofetz Chaim to TS
1 parent 8b4e710 commit 644b065

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hebcal/learning",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "Daily learning schedules: Daf Yomi, Mishna Yomi, etc",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

types.d.ts

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/// <reference types="node"/>
22

3+
import {HDate, Event} from '@hebcal/core';
4+
35
declare module '@hebcal/learning' {
46
/**
57
* Returns the Daf Yomi for given date
@@ -101,4 +103,15 @@ declare module '@hebcal/learning' {
101103
url(): string;
102104
readonly daf: any;
103105
}
106+
107+
/**
108+
* Looks up Chofetz Chaim Calendar for date
109+
*/
110+
export function chofetzChaim(hdate: HDate);
111+
112+
export class ChofetzChaimEvent extends Event {
113+
constructor(date: HDate, reading: any);
114+
render(locale?: string): string;
115+
url(): string;
116+
}
104117
}

0 commit comments

Comments
 (0)