@base-framework/base 3.0.281 → 3.0.282
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/dist/base.js.map +1 -1
- package/dist/types/shared/dom.d.ts +4 -4
- package/package.json +1 -1
|
@@ -201,16 +201,16 @@ export class Dom {
|
|
|
201
201
|
* This will get the scroll top position.
|
|
202
202
|
*
|
|
203
203
|
* @param {object} [obj] The element or document element if not set.
|
|
204
|
-
* @returns {
|
|
204
|
+
* @returns {number|null}
|
|
205
205
|
*/
|
|
206
|
-
static getScrollTop(obj?: object):
|
|
206
|
+
static getScrollTop(obj?: object): number | null;
|
|
207
207
|
/**
|
|
208
208
|
* This will get the scroll left position.
|
|
209
209
|
*
|
|
210
210
|
* @param {object} [obj] The element or document element if not set.
|
|
211
|
-
* @returns {
|
|
211
|
+
* @returns {number|null}
|
|
212
212
|
*/
|
|
213
|
-
static getScrollLeft(obj?: object):
|
|
213
|
+
static getScrollLeft(obj?: object): number | null;
|
|
214
214
|
/**
|
|
215
215
|
* This will get the window size.
|
|
216
216
|
*
|