@smplrspace/smplr-loader 2.47.1-beta.5 → 2.47.1-beta.6
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/generated/smplr.d.ts +1 -1
- package/dist/types.d.ts +2 -1
- package/package.json +1 -1
|
@@ -3822,7 +3822,7 @@ declare interface Vector3Coord extends Vector2Coord {
|
|
|
3822
3822
|
z: number;
|
|
3823
3823
|
}
|
|
3824
3824
|
|
|
3825
|
-
export declare const version = "2.47.1-beta.
|
|
3825
|
+
export declare const version = "2.47.1-beta.6";
|
|
3826
3826
|
|
|
3827
3827
|
declare interface ViewerRendererHandle {
|
|
3828
3828
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
package/dist/types.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
/* eslint-disable import/no-unresolved */
|
|
9
|
-
import { Color, Editor, Map, QueryClient, Space, toString, version } from './generated/smplr'
|
|
9
|
+
import { Color, Editor, Map, QueryClient, Space, toString, Utils, version } from './generated/smplr'
|
|
10
10
|
|
|
11
11
|
export * from './generated/smplr'
|
|
12
12
|
/* eslint-enable import/no-unresolved */
|
|
@@ -20,6 +20,7 @@ export interface Smplr {
|
|
|
20
20
|
Editor: typeof Editor
|
|
21
21
|
QueryClient: typeof QueryClient
|
|
22
22
|
Color: typeof Color
|
|
23
|
+
Utils: typeof Utils
|
|
23
24
|
}
|
|
24
25
|
|
|
25
26
|
declare global {
|