X Tutup
Skip to content

Commit f44b5ac

Browse files
liujupingJackLian
authored andcommitted
feat: added export of SimulatorHost class and simulatorHostSymbol
1 parent da1450e commit f44b5ac

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

packages/engine/src/modules/classes.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import {
99
SettingTopEntry,
1010
Selection,
1111
Prop,
12+
SimulatorHost,
1213
} from '@alilc/lowcode-shell';
1314
import { Node as InnerNode } from '@alilc/lowcode-designer';
1415

@@ -24,4 +25,5 @@ export default {
2425
InnerNode,
2526
Selection,
2627
Prop,
28+
SimulatorHost,
2729
};

packages/engine/src/modules/symbols.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import {
1010
settingTopEntrySymbol,
1111
designerCabinSymbol,
1212
propSymbol,
13+
simulatorHostSymbol,
1314
} from '@alilc/lowcode-shell';
1415

1516
export default {
@@ -24,4 +25,5 @@ export default {
2425
settingTopEntrySymbol,
2526
designerCabinSymbol,
2627
propSymbol,
28+
simulatorHostSymbol,
2729
};

packages/shell/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import {
2424
Event,
2525
Canvas,
2626
Workspace,
27+
SimulatorHost,
2728
} from './api';
2829

2930
export * from './symbols';
@@ -59,4 +60,5 @@ export {
5960
Canvas,
6061
Workspace,
6162
Clipboard,
63+
SimulatorHost,
6264
};

0 commit comments

Comments
 (0)
X Tutup