@sumaris-net/ngx-components 1.9.7 → 1.9.8

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@sumaris-net/ngx-components",
3
3
  "description": "SUMARiS Angular components",
4
- "version": "1.9.7",
4
+ "version": "1.9.8",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -24,6 +24,7 @@ export declare abstract class StartableService<T = any> implements IStartableSer
24
24
  get starting(): boolean;
25
25
  ready(): Promise<T>;
26
26
  protected registerSubscription(sub: Subscription): Subscription;
27
+ protected unregisterSubscription(sub: Subscription): void;
27
28
  protected ngOnStop(): Promise<void>;
28
29
  protected abstract ngOnStart(): Promise<T>;
29
30
  }