@veloceapps/sdk 9.0.0-14 → 9.0.0-16
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
package/src/flow.component.d.ts
CHANGED
@@ -1,10 +1,11 @@
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
1
2
|
import { FlowInfoService } from '@veloceapps/sdk/core';
|
2
3
|
import { Observable } from 'rxjs';
|
3
4
|
import { FlowService } from './services';
|
4
5
|
import { FlowRouterService } from './services/flow-router.service';
|
5
6
|
import { FlowGuidedSellingService } from './services/guided-selling.service';
|
6
7
|
import * as i0 from "@angular/core";
|
7
|
-
export declare class FlowComponent {
|
8
|
+
export declare class FlowComponent implements OnDestroy {
|
8
9
|
private routerService;
|
9
10
|
private flowService;
|
10
11
|
private flowInfo;
|
@@ -14,6 +15,7 @@ export declare class FlowComponent {
|
|
14
15
|
isStandalone$: Observable<boolean>;
|
15
16
|
guidedSellingVisible$: Observable<boolean>;
|
16
17
|
constructor(routerService: FlowRouterService, flowService: FlowService, flowInfo: FlowInfoService, guidedSellingService: FlowGuidedSellingService);
|
18
|
+
ngOnDestroy(): void;
|
17
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowComponent, never>;
|
18
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<FlowComponent, "vl-flow", never, {}, {}, never, never, false, never>;
|
19
21
|
}
|