@stemy/ngx-utils 12.2.17 → 12.2.18
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/bundles/stemy-ngx-utils.umd.js +9 -6
- package/bundles/stemy-ngx-utils.umd.js.map +1 -1
- package/esm2015/ngx-utils/services/universal.service.js +10 -7
- package/fesm2015/stemy-ngx-utils.js +9 -6
- package/fesm2015/stemy-ngx-utils.js.map +1 -1
- package/ngx-utils/services/universal.service.d.ts +3 -2
- package/package.json +1 -1
- package/stemy-ngx-utils.metadata.json +1 -1
|
@@ -3,8 +3,8 @@ import { DeviceDetectorService, DeviceInfo } from "ngx-device-detector";
|
|
|
3
3
|
* Use this service to determine which is the current environment
|
|
4
4
|
*/
|
|
5
5
|
export declare class UniversalService {
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
readonly platformId: string;
|
|
7
|
+
readonly dds: DeviceDetectorService;
|
|
8
8
|
get isBrowser(): boolean;
|
|
9
9
|
get isServer(): boolean;
|
|
10
10
|
get deviceInfo(): DeviceInfo;
|
|
@@ -21,4 +21,5 @@ export declare class UniversalService {
|
|
|
21
21
|
get isCrawler(): boolean;
|
|
22
22
|
private readonly crawler;
|
|
23
23
|
constructor(platformId: string, dds: DeviceDetectorService);
|
|
24
|
+
protected checkBrowser(name: string): boolean;
|
|
24
25
|
}
|