@rendley/sdk 1.11.12 → 1.11.14

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 CHANGED
@@ -61,7 +61,7 @@ export declare class Engine {
61
61
  private readonly fontRegistry;
62
62
  private subtitlesManager;
63
63
  private readonly undoManager;
64
- private readonly storageController;
64
+ private storageController;
65
65
  private transcoder;
66
66
  private settings;
67
67
  readonly events: EventEmitter;
@@ -72,6 +72,7 @@ export declare class Engine {
72
72
  private createdAt;
73
73
  private onSetupLibrary?;
74
74
  private initOptions;
75
+ private ready;
75
76
  private readonly renderer;
76
77
  private readonly backgroundTimer;
77
78
  private constructor();
@@ -117,6 +118,8 @@ export declare class Engine {
117
118
  createCustomClipInstance<T extends CustomClip = CustomClip>(typeEnum: string, ...args: any[]): T;
118
119
  hasCustomClipType(typeEnum: string): boolean;
119
120
  reset(): void;
121
+ isReady(): boolean;
122
+ isSafeToSerialize(): boolean;
120
123
  serialize(): {
121
124
  display: {
122
125
  width: number;
@@ -210,6 +213,7 @@ export declare class Engine {
210
213
  hash?: string | undefined;
211
214
  mimeType?: string | undefined;
212
215
  customData?: [string, unknown][] | undefined;
216
+ placeholderClipIds?: string[] | undefined;
213
217
  }[];
214
218
  };
215
219
  version?: string | undefined;
@@ -270,6 +274,7 @@ export declare class Engine {
270
274
  encoderCrf: number;
271
275
  encoderForcedCodecRFCString: string;
272
276
  encoderPreferredAcceleration: import("./modules/settings").PreferredAcceleration;
277
+ encoderKeyframeInterval: number;
273
278
  subtitlesScaleOnResize: boolean;
274
279
  subtitlesAutoWrapOnResize: boolean;
275
280
  viewAutoLayoutOnResize: import("./modules/settings").AutoLayoutMode;