UNPKG

@chamn/engine

Version:
17 lines (16 loc) 1.15 kB
export declare enum NODE_TYPE { START_NODE = "START_NODE", JUMP_LINK = "JUMP_LINK", ASSIGN_VALUE = "ASSIGN_VALUE", CALL_NODE_METHOD = "CALL_NODE_METHOD", RUN_CODE = "RUN_CODE", REQUEST_API = "REQUEST_API" } export declare const NODE_MAP: { START_NODE: (props: import('@xyflow/react').NodeProps<import('./StartNode').CounterNode>) => import("react/jsx-runtime").JSX.Element; JUMP_LINK: (props: import('@xyflow/react').NodeProps<import('./JumpLinkNode').TJumpLinkNode>) => import("react/jsx-runtime").JSX.Element; ASSIGN_VALUE: (props: import('@xyflow/react').NodeProps<import('./AssignValueNode').TAssignValueNode>) => import("react/jsx-runtime").JSX.Element; CALL_NODE_METHOD: (props: import('@xyflow/react').NodeProps<import('./CallNodeMethodNode').TCallNodeMethodNode>) => import("react/jsx-runtime").JSX.Element; RUN_CODE: (props: import('@xyflow/react').NodeProps<import('./RunCodeNode').TRunCodeNode>) => import("react/jsx-runtime").JSX.Element; REQUEST_API: (props: import('@xyflow/react').NodeProps<import('./RequestAPINode').TRequestAPINode>) => import("react/jsx-runtime").JSX.Element; };