morphing-scroll 2.2.12 → 2.2.13

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 (2) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +9 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "morphing-scroll",
3
- "version": "2.2.12",
3
+ "version": "2.2.13",
4
4
  "description": "React library for custom object scrolling and scrollbar styling〈♦〉",
5
5
  "author": "Georg Schilin",
6
6
  "license": "MIT",
package/types/index.d.ts CHANGED
@@ -109,10 +109,16 @@ declare const IntersectionTracker: React.FC<IntersectionTrackerT>;
109
109
 
110
110
  declare const MorphScroll: React.FC<MorphScrollT>;
111
111
 
112
+ /**
113
+ * ### Morph - all contents of the library〈♦〉
114
+ */
112
115
  declare const Morph: {
113
- MorphScroll: React.FC<MorphScrollT>;
114
- ResizeTracker: React.FC<ResizeTrackerT>;
115
- IntersectionTracker: React.FC<IntersectionTrackerT>;
116
+ /** See `MorphScroll` */
117
+ MorphScroll: typeof MorphScroll;
118
+ /** See `ResizeTracker` */
119
+ ResizeTracker: typeof ResizeTracker;
120
+ /** See `IntersectionTracker` */
121
+ IntersectionTracker: typeof IntersectionTracker;
116
122
  };
117
123
 
118
124
  export { MorphScroll, ResizeTracker, IntersectionTracker };