UNPKG
@hebcal/solar-calc
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
A sunrise/sunset/moonrise/moonset calculator - fork
github.com/hebcal/solar-calc
hebcal/solar-calc
@hebcal/solar-calc
/
types
/
sun.d.ts
10 lines
(9 loc)
•
244 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
default
class
Sun
{
julianDate
:
number
;
date
:
Date
;
latitude
:
number
;
longitude
:
number
;
readonly
solarNoon
:
Date
;
constructor
(
date
:
Date
,
latitude
:
number
,
longitude
:
number
);
timeAtAngle
(angle, rising):
Date
|
"error"
; }