@veltdev/sdk 1.0.29 → 1.0.30
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.
|
@@ -58,6 +58,15 @@ export declare class LiveStateSyncElement {
|
|
|
58
58
|
*/
|
|
59
59
|
singleEditorModeContainerIds: (elementIds: string[]) => void;
|
|
60
60
|
|
|
61
|
+
/**
|
|
62
|
+
* To enable auto sync state
|
|
63
|
+
*/
|
|
64
|
+
enableAutoSyncState: () => void;
|
|
65
|
+
/**
|
|
66
|
+
* To disable auto sync state
|
|
67
|
+
*/
|
|
68
|
+
disableAutoSyncState: () => void;
|
|
69
|
+
|
|
61
70
|
/**
|
|
62
71
|
* Constructor for LiveStateSyncElement.
|
|
63
72
|
*/
|
|
@@ -115,4 +124,14 @@ export declare class LiveStateSyncElement {
|
|
|
115
124
|
* @param elementIds Element ids
|
|
116
125
|
*/
|
|
117
126
|
private _singleEditorModeContainerIds;
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* To enable auto sync state
|
|
130
|
+
*/
|
|
131
|
+
private _enableAutoSyncState;
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* To disable auto sync state
|
|
135
|
+
*/
|
|
136
|
+
private _disableAutoSyncState;
|
|
118
137
|
}
|