@ts-core/angular 13.1.15 → 13.1.16

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ts-core/angular",
3
- "version": "13.1.15",
3
+ "version": "13.1.16",
4
4
  "description": "Modules for frontend based on angular",
5
5
  "main": "public-api.js",
6
6
  "author": {
package/public-api.d.ts CHANGED
@@ -109,6 +109,7 @@ export * from './question/IQuestion';
109
109
  export * from './question/QuestionManager';
110
110
  export * from './service/PipeBaseService';
111
111
  export * from './service/BootstrapBreakpointService';
112
+ export * from './service/PlatformService';
112
113
  export * from './service/RouterBaseService';
113
114
  export * from './service/route/CanDeactivateGuard';
114
115
  export * from './service/route/IRouterDeactivatable';
@@ -0,0 +1,11 @@
1
+ import { DestroyableContainer } from '@ts-core/common';
2
+ import * as i0 from "@angular/core";
3
+ export declare class PlatformService extends DestroyableContainer {
4
+ private _isPlatformServer;
5
+ private _isPlatformBrowser;
6
+ constructor(platformId: string);
7
+ get isPlatformServer(): boolean;
8
+ get isPlatformBrowser(): boolean;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<PlatformService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<PlatformService>;
11
+ }