@rendley/sdk 1.1.1 → 1.2.0
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 +9 -5
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/libs/ffmpeg/worker.d.ts +0 -3
- package/dist/modules/clip/Clip.d.ts +1025 -1
- package/dist/modules/clip/ClipStyle.d.ts +9 -0
- package/dist/modules/clip/clips/custom/CustomClip.d.ts +65 -0
- package/dist/modules/clip/clips/lottie/LottieClip.d.ts +114 -0
- package/dist/modules/clip/clips/shape/ShapeClip.d.ts +65 -0
- package/dist/modules/clip/clips/text/TextClip.d.ts +65 -0
- package/dist/utils/animation/animation.d.ts +255 -0
- package/dist/utils/log.d.ts +3 -2
- package/package.json +1 -1
package/dist/Engine.d.ts
CHANGED
|
@@ -18,13 +18,13 @@ type CustomClipConstructor<T extends CustomClip = CustomClip> = {
|
|
|
18
18
|
new (...args: any[]): T;
|
|
19
19
|
};
|
|
20
20
|
export declare class Engine {
|
|
21
|
-
display: Display;
|
|
22
|
-
timeline: Timeline;
|
|
23
21
|
private static instance;
|
|
22
|
+
private display;
|
|
23
|
+
private timeline;
|
|
24
|
+
private library;
|
|
25
|
+
private fontRegistry;
|
|
26
|
+
private subtitleManager;
|
|
24
27
|
readonly events: EventEmitter;
|
|
25
|
-
readonly fontRegistry: FontRegistry;
|
|
26
|
-
readonly subtitleManager: SubtitleManager;
|
|
27
|
-
library: Library;
|
|
28
28
|
private initialized;
|
|
29
29
|
private rendering;
|
|
30
30
|
private license?;
|
|
@@ -34,6 +34,10 @@ export declare class Engine {
|
|
|
34
34
|
init(options: EngineOptions): Promise<void>;
|
|
35
35
|
destroy(): void;
|
|
36
36
|
getDisplay(): Display;
|
|
37
|
+
getTimeline(): Timeline;
|
|
38
|
+
getLibrary(): Library;
|
|
39
|
+
getFontRegistry(): FontRegistry;
|
|
40
|
+
getSubtitlesManager(): SubtitleManager;
|
|
37
41
|
isInitialized(): boolean;
|
|
38
42
|
isRendering(): boolean;
|
|
39
43
|
private generateMix;
|