website-utilities 1.0.316 → 1.0.317
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/index.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -158,12 +158,12 @@ export declare class WebsiteUtilities extends Tools {
|
|
|
158
158
|
* This method triggers if the viewport moves to top.
|
|
159
159
|
* @returns Nothing.
|
|
160
160
|
*/
|
|
161
|
-
_onViewportMovesToTop: (...
|
|
161
|
+
_onViewportMovesToTop: (...parameters: unknown[]) => Promise<unknown>;
|
|
162
162
|
/**
|
|
163
163
|
* This method triggers if the viewport moves away from top.
|
|
164
164
|
* @returns Nothing.
|
|
165
165
|
*/
|
|
166
|
-
_onViewportMovesAwayFromTop: (...
|
|
166
|
+
_onViewportMovesAwayFromTop: (...parameters: unknown[]) => Promise<unknown>;
|
|
167
167
|
/**
|
|
168
168
|
* This method triggers if the responsive design switches to another mode.
|
|
169
169
|
* @param _oldMode - Saves the previous mode.
|