UNPKG

@rxflow/base

Version:

BaseFlow - 核心 Flow 组件库

14 lines 541 B
/** * @author: yanxianliang * @date: 2025-07-27 16:33 * @modified:2025/7/27 16:33 by yanxianliang * @desc: Flow * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import '@xyflow/react/dist/style.css'; import { IBaseFlowProps } from "./types"; import { Edge, Node } from "@xyflow/react"; import "./index.less"; export declare function Flow<NodeType extends Node = Node, EdgeType extends Edge = Edge>(props: IBaseFlowProps<NodeType, EdgeType>): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Flow.d.ts.map