chore(app): 删除无用log,export FlowState

This commit is contained in:
roymondchen 2024-11-18 14:32:50 +08:00 committed by roymondchen
parent 52c1124e97
commit 0a1f03b5c7
2 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,6 @@ export default class EventHelper extends EventEmitter {
* @param args
*/
private async eventHandler(config: EventConfig | number, fromCpt: TMagicNode | DataSource | undefined, args: any[]) {
console.log('eventHandler', config, fromCpt);
const eventConfig = typeof config === 'number' ? (fromCpt as TMagicNode).events[config] : config;
if (has(eventConfig, 'actions')) {
// EventConfig类型

View File

@ -31,5 +31,6 @@ export { default as Env } from './Env';
export { default as Page } from './Page';
export { default as Node } from './Node';
export { default as IteratorContainer } from './IteratorContainer';
export { default as FlowState } from './FlowState';
export default App;