mx3d 2025.5.7 → 2025.5.22

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 CHANGED
@@ -508,19 +508,19 @@ declare class Effect {
508
508
  static removeAll(): void;
509
509
  }
510
510
 
511
- declare class MX3D {
512
- static set accessToken(token: string);
513
- static get accessToken(): string;
514
- static App: typeof App;
515
- static Request: axios.AxiosInstance;
516
- static AlarmFlashing: typeof AlarmFlashing;
517
- static UI: typeof UI;
518
- static Builder: typeof Builder;
519
- static ObjectType: typeof ObjectType;
520
- static EffectType: typeof EffectType;
521
- static EventType: typeof EventType;
522
- static StatusType: typeof StatusType;
523
- static Effect: typeof Effect;
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 };