lucuma-core 0.75.2 → 0.76.0-2-1e288e8-SNAPSHOT

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.
Files changed (4) hide show
  1. package/main.d.ts +11 -2
  2. package/main.js +131383 -12175
  3. package/main.js.map +4 -4
  4. package/package.json +2 -1
package/main.d.ts CHANGED
@@ -1,3 +1,12 @@
1
- declare class Foo {
2
- constructor();
1
+ export declare class PlotPoint {
2
+ constructor(instant: Date, airmass: number, altitude: number);
3
+ airmass: number;
4
+ altitude: number;
5
+ instant: Date;
3
6
  }
7
+
8
+ export declare interface Site {}
9
+ export declare const GN: Site;
10
+ export declare const GS: Site;
11
+
12
+ export declare function nightPlot(site: Site, start: Date, coords: string): PlotPoint[];