taxtank-core 0.9.5 → 0.10.2
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/taxtank-core.umd.js +29 -0
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/services/kompassify/kompassify.service.js +30 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/taxtank-core.js +28 -1
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/services/kompassify/kompassify.service.d.ts +13 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import { IEventListener } from '../../interfaces/event-listener.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Service listen and handle kompassify events
|
|
6
|
+
*/
|
|
7
|
+
export declare class KompassifyService implements IEventListener {
|
|
8
|
+
private router;
|
|
9
|
+
constructor(router: Router);
|
|
10
|
+
listenEvents(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KompassifyService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<KompassifyService>;
|
|
13
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -295,6 +295,7 @@ export * from './lib/services/http/income-source/income-source-forecast/income-s
|
|
|
295
295
|
export * from './lib/services/http/income-source/salary-forecast/salary-forecast.service';
|
|
296
296
|
export * from './lib/services/http/income-source/sole-forecast/sole-forecast.service';
|
|
297
297
|
export * from './lib/services/intercom/intercom.service';
|
|
298
|
+
export * from './lib/services/kompassify/kompassify.service';
|
|
298
299
|
export * from './lib/services/http/loan/loan.service';
|
|
299
300
|
export * from './lib/services/http/service-notification/service-notification.service';
|
|
300
301
|
export * from './lib/services/pdf/pdf.service';
|