@markerjs/markerjs3 3.7.2 → 3.8.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/markerjs3.d.ts CHANGED
@@ -2358,6 +2358,7 @@ declare class MarkerArea extends HTMLElement {
2358
2358
  */
2359
2359
  getState(): AnnotationState;
2360
2360
  private _stateToRestore;
2361
+ private _stateToRestoreAddUndoStep;
2361
2362
  /**
2362
2363
  * Restores the annotation from the previously saved state.
2363
2364
  * @param state
@@ -3453,6 +3454,21 @@ declare class Renderer {
3453
3454
  * @since 3.2.0
3454
3455
  */
3455
3456
  set defaultFilter(value: string | undefined);
3457
+ private _targetImageLoadTimeout;
3458
+ /**
3459
+ * Timeout in milliseconds to wait for the target image to load.
3460
+ * Default is 10000 (10 seconds). Set to 0 to wait indefinitely.
3461
+ *
3462
+ * @since 3.8.0
3463
+ */
3464
+ get targetImageLoadTimeout(): number;
3465
+ /**
3466
+ * Timeout in milliseconds to wait for the target image to load.
3467
+ * Default is 10000 (10 seconds). Set to 0 to wait indefinitely.
3468
+ *
3469
+ * @since 3.8.0
3470
+ */
3471
+ set targetImageLoadTimeout(value: number);
3456
3472
  private _defsElement?;
3457
3473
  private _defs;
3458
3474
  constructor();