@shotstack/shotstack-studio 2.0.0-beta.20 → 2.0.0-beta.22
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 +3 -3
- package/dist/internal.es.js +9650 -12616
- package/dist/internal.umd.js +28 -66
- package/dist/schema/index.cjs +1 -1
- package/dist/schema/index.d.ts +3 -3
- package/dist/schema/index.mjs +129 -329
- package/dist/shotstack-studio.es.js +14199 -17165
- package/dist/shotstack-studio.umd.js +172 -210
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -616,6 +616,9 @@ export declare class Edit {
|
|
|
616
616
|
|
|
617
617
|
declare type Edit_2 = components["schemas"]["Edit"];
|
|
618
618
|
|
|
619
|
+
/** Configuration for defining an edit - the structure passed to EditSession */
|
|
620
|
+
export declare type EditConfig = Edit_2;
|
|
621
|
+
|
|
619
622
|
export declare const EditEvent: {
|
|
620
623
|
readonly PlaybackPlay: "playback:play";
|
|
621
624
|
readonly PlaybackPause: "playback:pause";
|
|
@@ -1826,9 +1829,6 @@ export declare interface UIRegistration {
|
|
|
1826
1829
|
dispose(): void;
|
|
1827
1830
|
}
|
|
1828
1831
|
|
|
1829
|
-
/** Alias for Edit type - represents an edit before timing values are resolved */
|
|
1830
|
-
export declare type UnresolvedEdit = Edit_2;
|
|
1831
|
-
|
|
1832
1832
|
export declare const VERSION: string;
|
|
1833
1833
|
|
|
1834
1834
|
export declare type VideoAsset = components["schemas"]["VideoAsset"];
|