@veltdev/sdk 1.0.114 → 1.0.115
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.
|
@@ -547,6 +547,16 @@ export declare class CommentElement {
|
|
|
547
547
|
* To disable showing recording summary in comments
|
|
548
548
|
*/
|
|
549
549
|
public disableRecordingSummary: () => void;
|
|
550
|
+
|
|
551
|
+
/**
|
|
552
|
+
* To enable recording countdown
|
|
553
|
+
*/
|
|
554
|
+
public enableRecordingCountdown: () => void;
|
|
555
|
+
|
|
556
|
+
/**
|
|
557
|
+
* To disable recording countdown
|
|
558
|
+
*/
|
|
559
|
+
public disableRecordingCountdown: () => void;
|
|
550
560
|
constructor();
|
|
551
561
|
/**
|
|
552
562
|
* Subscribe to comments on the current document.
|
|
@@ -1087,4 +1097,14 @@ export declare class CommentElement {
|
|
|
1087
1097
|
* To disable showing recording summary in comments
|
|
1088
1098
|
*/
|
|
1089
1099
|
private _disableRecordingSummary;
|
|
1100
|
+
|
|
1101
|
+
/**
|
|
1102
|
+
* To enable recording countdown
|
|
1103
|
+
*/
|
|
1104
|
+
private _enableRecordingCountdown;
|
|
1105
|
+
|
|
1106
|
+
/**
|
|
1107
|
+
* To disable recording countdown
|
|
1108
|
+
*/
|
|
1109
|
+
private _disableRecordingCountdown;
|
|
1090
1110
|
}
|
|
@@ -7,9 +7,29 @@ export declare class RecorderElement {
|
|
|
7
7
|
|
|
8
8
|
onRecordedData: () => Observable<any>;
|
|
9
9
|
|
|
10
|
+
/**
|
|
11
|
+
* To enable recording countdown
|
|
12
|
+
*/
|
|
13
|
+
enableRecordingCountdown: () => void;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* To disable recording countdown
|
|
17
|
+
*/
|
|
18
|
+
disableRecordingCountdown: () => void;
|
|
19
|
+
|
|
10
20
|
constructor();
|
|
11
21
|
|
|
12
22
|
private _initRecording;
|
|
13
23
|
|
|
14
24
|
private _onRecordedData;
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* To enable dark mode in comments
|
|
28
|
+
*/
|
|
29
|
+
private _enableRecordingCountdown;
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* To disable dark mode in comments
|
|
33
|
+
*/
|
|
34
|
+
private _disableRecordingCountdown;
|
|
15
35
|
}
|