mx3d 2025.5.22 → 2025.5.24
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 +1 -1
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
|
-
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
|
-
}
|
|
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
|
+
}
|
|
525
525
|
|
|
526
|
-
export { AlarmFlashing, App, Builder, Effect, EffectType, EventType,
|
|
526
|
+
export { AlarmFlashing, App, Builder, Effect, EffectType, EventType, ObjectType, StatusType, UI, MX3D as default };
|