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.
- package/package.json +1 -1
- package/types/index.d.ts +9 -3
package/package.json
CHANGED
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
|
|
114
|
-
|
|
115
|
-
|
|
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 };
|