UNPKG
tahvel
Version:
latest (1.0.1)
1.0.1
Tools for tahvel-eesti system
github.com/Klarulor/tahvel
Klarulor/tahvel
tahvel
/
examples
/
getScheduleTest.ts
13 lines
(11 loc)
•
280 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{getSchedule}
from
"../dist/module/schedule"
;
const
SCHOOL_ID
=
8
;
const
GROUP_NAME
=
"JPTV22"
; (
async
() => {
const
data =
await
getSchedule
(
SCHOOL_ID
,
GROUP_NAME
, {
year
:
2022
,
month
:
9
,
day
:
7
});
console
.
log
(data); })()