mx3d 2025.5.21 → 2025.5.23
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/index.d.ts +15 -15
- package/mx3d.cjs.js +1 -1
- package/mx3d.esm.js +1 -1
- package/mx3d.min.js +1 -1
- package/package.json +9 -3
package/index.d.ts
CHANGED
|
@@ -508,19 +508,19 @@ declare class Effect {
|
|
|
508
508
|
static removeAll(): void;
|
|
509
509
|
}
|
|
510
510
|
|
|
511
|
-
declare
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
}
|
|
511
|
+
declare const Request: axios.AxiosInstance;
|
|
512
|
+
declare const MX3D: {
|
|
513
|
+
accessToken: string;
|
|
514
|
+
App: typeof App;
|
|
515
|
+
Request: axios.AxiosInstance;
|
|
516
|
+
AlarmFlashing: typeof AlarmFlashing;
|
|
517
|
+
UI: typeof UI;
|
|
518
|
+
Builder: typeof Builder;
|
|
519
|
+
ObjectType: typeof ObjectType;
|
|
520
|
+
EffectType: typeof EffectType;
|
|
521
|
+
EventType: typeof EventType;
|
|
522
|
+
StatusType: typeof StatusType;
|
|
523
|
+
Effect: typeof Effect;
|
|
524
|
+
};
|
|
525
525
|
|
|
526
|
-
export { MX3D as default };
|
|
526
|
+
export { AlarmFlashing, App, Builder, Effect, EffectType, EventType, MX3D, ObjectType, Request, StatusType, UI, MX3D as default };
|