@archilogic/floor-plan-sdk 5.1.14 → 5.1.16
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/fpe.d.ts +2 -0
- package/dist/fpe.js +1 -1
- package/dist/fpe.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/fpe.d.ts
CHANGED
|
@@ -3541,6 +3541,7 @@ declare class WebGlView extends TinyEmitter {
|
|
|
3541
3541
|
/* Excluded from this release type: _zoomTarget */
|
|
3542
3542
|
_oldTime: number;
|
|
3543
3543
|
ticker?: Ticker;
|
|
3544
|
+
_resizeObserver?: ResizeObserver;
|
|
3544
3545
|
on: (event: ViewEvent, callback: Function, ctx?: any) => this;
|
|
3545
3546
|
once: (event: ViewEvent, callback: Function, ctx?: any) => this;
|
|
3546
3547
|
off: (event: ViewEvent, callback?: Function) => this;
|
|
@@ -3558,6 +3559,7 @@ declare class WebGlView extends TinyEmitter {
|
|
|
3558
3559
|
reset(): void;
|
|
3559
3560
|
pause(interaction?: string): void;
|
|
3560
3561
|
resume(interaction?: string): void;
|
|
3562
|
+
destroy(): void;
|
|
3561
3563
|
}
|
|
3562
3564
|
|
|
3563
3565
|
export { }
|