@rendley/sdk 1.7.3 → 1.8.1
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/Engine.d.ts +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/libs/ffmpeg/types.d.ts +1 -0
- package/dist/modules/clip/clips/audio/AudioClip.d.ts +1 -1
- package/dist/modules/clip/clips/htmlText/HtmlTextClip.d.ts +3 -3
- package/dist/modules/clip/clips/shape/ShapeStyle.d.ts +1 -1
- package/dist/modules/clip/clips/text/TextStyle.d.ts +1 -1
- package/dist/modules/clip/clips/video/VideoClip.d.ts +4 -0
- package/dist/modules/layer/Layer.d.ts +3 -3
- package/dist/modules/settings/Settings.d.ts +3 -0
- package/dist/modules/timeline/Timeline.d.ts +5 -5
- package/dist/modules/transition/Transition.d.ts +26 -12
- package/dist/utils/cachedAccess/cachedAccess.d.ts +5 -0
- package/package.json +1 -1
package/dist/Engine.d.ts
CHANGED
|
@@ -102,7 +102,6 @@ export declare class Engine {
|
|
|
102
102
|
fps: number;
|
|
103
103
|
layers: {
|
|
104
104
|
id: string;
|
|
105
|
-
clips: any[];
|
|
106
105
|
transitions: {
|
|
107
106
|
name: string;
|
|
108
107
|
type: "transition";
|
|
@@ -113,6 +112,7 @@ export declare class Engine {
|
|
|
113
112
|
outDuration: number;
|
|
114
113
|
transitionSrc: string;
|
|
115
114
|
}[];
|
|
115
|
+
clips: any[];
|
|
116
116
|
visible?: boolean | undefined;
|
|
117
117
|
muted?: boolean | undefined;
|
|
118
118
|
volume?: number | undefined;
|