@netless/app-slide 0.2.100-alpha.2 → 0.2.101-alpha.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/index.d.ts CHANGED
@@ -206,6 +206,10 @@ interface ISlideRenderOptions {
206
206
  */
207
207
  transitionResolutionLevel?: number;
208
208
  antialias?: boolean;
209
+ /** Maximum compressed bytes accepted for one client-decoded GIF. */
210
+ localGifMaxCompressedBytes?: number;
211
+ /** Maximum estimated GIF working set for one cached slide. */
212
+ localGifMaxWorkingSetBytes?: number;
209
213
  }
210
214
  interface INavigatorDelegate {
211
215
  gotoPage?: (index: number) => void;
@@ -323,7 +327,6 @@ interface ISlideConfig {
323
327
  interface MediaState {
324
328
  type: "pause" | "play";
325
329
  time: number;
326
- frozenTime?: number;
327
330
  fullscreen?: boolean;
328
331
  }
329
332
  interface TimeNodeSeqState {
@@ -474,6 +477,7 @@ declare class Slide extends Slide_base {
474
477
  private userInputTime;
475
478
  private isSyncingSlideState;
476
479
  private frozenTaskManager;
480
+ private frozenMediaTimes;
477
481
  private randomId;
478
482
  private resize;
479
483
  private isAnimating;