| 4 | |
| 5 | /** Sun or Moon horizontal position. */ |
| 6 | export interface Position { |
| 7 | /** Azimuth, degrees clockwise from north (0 = N, 90 = E, 180 = S, 270 = W). */ |
| 8 | azimuth: number; |
| 9 | /** Apparent (refraction-corrected) altitude above the horizon, degrees. */ |
| 10 | altitude: number; |
| 11 | } |
| 12 | |
| 13 | export function getPosition(date: Date, lat: number, lng: number): Position; |
| 14 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…