ngx-payvent-shared 0.0.2 → 0.0.3
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/index.d.ts
CHANGED
|
@@ -534,13 +534,16 @@ declare class StoriesComponent {
|
|
|
534
534
|
currentStory: _angular_core.Signal<any>;
|
|
535
535
|
defaultDuration: _angular_core.InputSignal<number>;
|
|
536
536
|
currentProgress: _angular_core.WritableSignal<number>;
|
|
537
|
+
currentDuration: _angular_core.WritableSignal<number>;
|
|
537
538
|
currentTime: number;
|
|
538
539
|
timerInterval: number;
|
|
539
540
|
timerSubscription: any;
|
|
540
541
|
paused: _angular_core.ModelSignal<boolean>;
|
|
541
542
|
close: _angular_core.OutputEmitterRef<void>;
|
|
542
543
|
sidebarService: SidebarService;
|
|
543
|
-
videoPlayer: ElementRef
|
|
544
|
+
videoPlayer: _angular_core.Signal<ElementRef<any>>;
|
|
545
|
+
storyContainer: _angular_core.Signal<ElementRef<any>>;
|
|
546
|
+
regularStyle: any;
|
|
544
547
|
constructor();
|
|
545
548
|
ngOnInit(): void;
|
|
546
549
|
next(): void;
|