@veltdev/sdk 1.0.118 → 1.0.120
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.
|
@@ -557,6 +557,12 @@ export declare class CommentElement {
|
|
|
557
557
|
* To disable recording countdown
|
|
558
558
|
*/
|
|
559
559
|
public disableRecordingCountdown: () => void;
|
|
560
|
+
|
|
561
|
+
/**
|
|
562
|
+
* To set unread indicator mode
|
|
563
|
+
* @param mode unread indicator mode
|
|
564
|
+
*/
|
|
565
|
+
public setUnreadIndicatorMode: (mode: string) => void;
|
|
560
566
|
constructor();
|
|
561
567
|
/**
|
|
562
568
|
* Subscribe to comments on the current document.
|
|
@@ -1107,4 +1113,10 @@ export declare class CommentElement {
|
|
|
1107
1113
|
* To disable recording countdown
|
|
1108
1114
|
*/
|
|
1109
1115
|
private _disableRecordingCountdown;
|
|
1116
|
+
|
|
1117
|
+
/**
|
|
1118
|
+
* To set unread indicator mode
|
|
1119
|
+
* @param mode unread indicator mode
|
|
1120
|
+
*/
|
|
1121
|
+
private _setUnreadIndicatorMode;
|
|
1110
1122
|
}
|
package/app/utils/enums.d.ts
CHANGED