@shotstack/shotstack-studio 2.11.6 → 2.11.7
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/dist/index.d.ts +2 -0
- package/dist/internal.d.ts +2 -0
- package/dist/internal.es.js +1585 -1583
- package/dist/internal.umd.js +28 -28
- package/dist/shotstack-studio.es.js +685 -680
- package/dist/shotstack-studio.umd.js +65 -65
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -137,6 +137,8 @@ export declare class Edit {
|
|
|
137
137
|
playbackTime: number;
|
|
138
138
|
totalDuration: number;
|
|
139
139
|
isPlaying: boolean;
|
|
140
|
+
private playWallAnchorMs;
|
|
141
|
+
private playTimeAnchorSeconds;
|
|
140
142
|
private get clips();
|
|
141
143
|
private internalEvents;
|
|
142
144
|
events: ReadonlyEventEmitter<EditEventMap>;
|
package/dist/internal.d.ts
CHANGED
|
@@ -26,6 +26,8 @@ export declare class Edit {
|
|
|
26
26
|
playbackTime: number;
|
|
27
27
|
totalDuration: number;
|
|
28
28
|
isPlaying: boolean;
|
|
29
|
+
private playWallAnchorMs;
|
|
30
|
+
private playTimeAnchorSeconds;
|
|
29
31
|
private get clips();
|
|
30
32
|
private internalEvents;
|
|
31
33
|
events: ReadonlyEventEmitter<EditEventMap>;
|