@glowjs/core 2022.6.29 → 2022.7.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/glow.core.js +1 -1
- package/dist/typings/camera/CameraMgr.d.ts +4 -0
- package/dist/typings/entity/component/cabinet/BoardCard.d.ts +3 -2
- package/dist/typings/entity/component/cabinet/RackMounted.d.ts +5 -4
- package/dist/typings/entity/component/cabinet/ResImageSource.d.ts +13 -0
- package/dist/typings/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { App } from '../../../core/App';
|
|
2
2
|
import { Entity } from '../../Entity';
|
|
3
|
+
import { ResImageSource } from './ResImageSource';
|
|
3
4
|
/**
|
|
4
5
|
* 板卡
|
|
5
6
|
*/
|
|
@@ -34,8 +35,8 @@ export declare class BoardCard extends Entity {
|
|
|
34
35
|
/**
|
|
35
36
|
* 获取或设置前面图片
|
|
36
37
|
*/
|
|
37
|
-
get frontImg():
|
|
38
|
-
set frontImg(value:
|
|
38
|
+
get frontImg(): ResImageSource;
|
|
39
|
+
set frontImg(value: ResImageSource);
|
|
39
40
|
/**
|
|
40
41
|
* 获取或设置背景颜色
|
|
41
42
|
*/
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { App } from '../../../core/App';
|
|
2
2
|
import { Entity } from '../../Entity';
|
|
3
|
+
import { ResImageSource } from './ResImageSource';
|
|
3
4
|
/**
|
|
4
5
|
* 机架设备
|
|
5
6
|
*/
|
|
@@ -58,13 +59,13 @@ export declare class RackMounted extends Entity {
|
|
|
58
59
|
/**
|
|
59
60
|
* 获取或设置前面图片
|
|
60
61
|
*/
|
|
61
|
-
get frontImg():
|
|
62
|
-
set frontImg(value:
|
|
62
|
+
get frontImg(): ResImageSource;
|
|
63
|
+
set frontImg(value: ResImageSource);
|
|
63
64
|
/**
|
|
64
65
|
* 获取或设置后面图片
|
|
65
66
|
*/
|
|
66
|
-
get backImg():
|
|
67
|
-
set backImg(value:
|
|
67
|
+
get backImg(): ResImageSource;
|
|
68
|
+
set backImg(value: ResImageSource);
|
|
68
69
|
/**
|
|
69
70
|
* 获取或设置背景颜色
|
|
70
71
|
*/
|
package/dist/typings/index.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ export { Cabinet } from './entity/component/cabinet/Cabinet';
|
|
|
55
55
|
export { RackMounted } from './entity/component/cabinet/RackMounted';
|
|
56
56
|
export { BoardCard } from './entity/component/cabinet/BoardCard';
|
|
57
57
|
export { NetworkPort } from './entity/component/cabinet/NetworkPort';
|
|
58
|
+
export { ResImageSource } from './entity/component/cabinet/ResImageSource';
|
|
58
59
|
export { MaterialMgr } from './material/MaterialMgr';
|
|
59
60
|
export { Group } from './entity/Group';
|
|
60
61
|
export { Thing } from './entity/Thing';
|