We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fddaea commit b7ee983Copy full SHA for b7ee983
1 file changed
src/index.ts
@@ -1,4 +1,5 @@
1
import harmonics from './harmonics/index.js'
2
+import { default as constituents } from './constituents/index.js'
3
import type { HarmonicConstituent } from './harmonics/index.js'
4
import type { TimelinePoint, Extreme } from './harmonics/prediction.js'
5
@@ -80,5 +81,8 @@ const tidePredictionFactory = (
80
81
return tidePrediction
82
}
83
84
+// Make constituents available on factory for reference
85
+tidePredictionFactory.constituents = constituents
86
+
87
export default tidePredictionFactory
88
export type { HarmonicConstituent, TimelinePoint, Extreme }
0 commit comments