@smplrspace/smplr-loader 2.32.0 → 2.32.1
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.
|
@@ -2284,6 +2284,7 @@ export declare class Space {
|
|
|
2284
2284
|
removeEventListener(listenerId: number): void;
|
|
2285
2285
|
clearEventListeners(event: EventType | keyof typeof EventType): void;
|
|
2286
2286
|
clearAllEventListeners(): void;
|
|
2287
|
+
getDefinition(): any;
|
|
2287
2288
|
centerCamera(): void;
|
|
2288
2289
|
zoomIn(): void;
|
|
2289
2290
|
zoomOut(): void;
|
|
@@ -3141,9 +3142,11 @@ declare interface Vector3Coord extends Vector2Coord {
|
|
|
3141
3142
|
z: number;
|
|
3142
3143
|
}
|
|
3143
3144
|
|
|
3144
|
-
export declare const version = "2.32.
|
|
3145
|
+
export declare const version = "2.32.1";
|
|
3145
3146
|
|
|
3146
3147
|
declare interface ViewerRendererHandle {
|
|
3148
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
3149
|
+
getSpaceDefinition: () => any
|
|
3147
3150
|
zoomIn: () => void
|
|
3148
3151
|
zoomOut: () => void
|
|
3149
3152
|
centerCam: () => void
|