@veltdev/sdk 1.0.31 → 1.0.32
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.
|
@@ -486,6 +486,11 @@ export declare class CommentElement {
|
|
|
486
486
|
* To disable comment tool
|
|
487
487
|
*/
|
|
488
488
|
public disableCommentTool: () => any;
|
|
489
|
+
|
|
490
|
+
/**
|
|
491
|
+
* To set total media length.
|
|
492
|
+
*/
|
|
493
|
+
public setTotalMediaLength: (totalMediaLength: number) => void;
|
|
489
494
|
constructor();
|
|
490
495
|
/**
|
|
491
496
|
* Subscribe to comments on the current document.
|
|
@@ -965,4 +970,9 @@ export declare class CommentElement {
|
|
|
965
970
|
* To disable comment tool
|
|
966
971
|
*/
|
|
967
972
|
private _disableCommentTool;
|
|
973
|
+
|
|
974
|
+
/**
|
|
975
|
+
* To set total media length.
|
|
976
|
+
*/
|
|
977
|
+
private _setTotalMediaLength;
|
|
968
978
|
}
|
package/app/utils/constants.d.ts
CHANGED