mx3d 2025.5.23 → 2025.5.25

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
@@ -276,6 +276,7 @@ declare class App {
276
276
  sl?: string;
277
277
  rl?: string;
278
278
  });
279
+ looksLikePathOrUrl(str: any): boolean;
279
280
  load(_config: {
280
281
  pk?: string;
281
282
  fileUrl?: string;
@@ -508,19 +509,19 @@ declare class Effect {
508
509
  static removeAll(): void;
509
510
  }
510
511
 
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
- };
512
+ declare class MX3D {
513
+ static set accessToken(token: string);
514
+ static get accessToken(): string;
515
+ static App: typeof App;
516
+ static Request: axios.AxiosInstance;
517
+ static AlarmFlashing: typeof AlarmFlashing;
518
+ static UI: typeof UI;
519
+ static Builder: typeof Builder;
520
+ static ObjectType: typeof ObjectType;
521
+ static EffectType: typeof EffectType;
522
+ static EventType: typeof EventType;
523
+ static StatusType: typeof StatusType;
524
+ static Effect: typeof Effect;
525
+ }
525
526
 
526
- export { AlarmFlashing, App, Builder, Effect, EffectType, EventType, MX3D, ObjectType, Request, StatusType, UI, MX3D as default };
527
+ export { AlarmFlashing, App, Builder, Effect, EffectType, EventType, ObjectType, StatusType, UI, MX3D as default };