@extscreen/es-core 1.0.21 → 1.0.22
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/index.js +12 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -440,6 +440,18 @@ class ESDeviceManager {
|
|
|
440
440
|
getBuildSDKVersion() {
|
|
441
441
|
return this._buildSDKVersion;
|
|
442
442
|
}
|
|
443
|
+
|
|
444
|
+
getDensity() {
|
|
445
|
+
return this._density;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
getDensityDpi() {
|
|
449
|
+
return this._densityDpi;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
getScaledDensity() {
|
|
453
|
+
return this._scaledDensity;
|
|
454
|
+
}
|
|
443
455
|
}
|
|
444
456
|
|
|
445
457
|
var ESDeviceManager$1 = new ESDeviceManager();
|