@rendley/sdk 1.5.0 → 1.5.2
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 +2 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/libs/ffmpeg/types.d.ts +2 -0
- package/dist/modules/library/Library.d.ts +1 -1
- package/dist/modules/library/MediaData.d.ts +1 -1
- package/dist/modules/settings/Settings.d.ts +6 -0
- package/dist/modules/timeline/Timeline.d.ts +2 -0
- package/package.json +1 -1
package/dist/Engine.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ export declare class Engine {
|
|
|
49
49
|
private rendering;
|
|
50
50
|
private license?;
|
|
51
51
|
private projectId;
|
|
52
|
+
private isDestroying;
|
|
52
53
|
private constructor();
|
|
53
54
|
static getInstance(): Engine;
|
|
54
55
|
hasInstance(): boolean;
|
|
@@ -66,7 +67,7 @@ export declare class Engine {
|
|
|
66
67
|
isInitialized(): boolean;
|
|
67
68
|
isRendering(): boolean;
|
|
68
69
|
private generateMix;
|
|
69
|
-
export(payload?: ExportOptions): Promise<ExportResult>;
|
|
70
|
+
export(payload?: ExportOptions): Promise<ExportResult | null>;
|
|
70
71
|
play(): Promise<void>;
|
|
71
72
|
pause(): Promise<void>;
|
|
72
73
|
stop(): Promise<void>;
|