UNPKG

@rxflow/base

Version:

BaseFlow - 核心 Flow 组件库

16 lines 592 B
/** * @author: yanxianliang * @date: 2025-10-16 19:35 * @modified:2025/10/16 19:35 by yanxianliang * @desc: Props 存储 * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import { IBaseFlowProps } from "../types"; import { Edge, Node } from "@xyflow/react"; import { ReactNode } from "react"; export declare const PropsStore: <NodeType extends Node = Node, EdgeType extends Edge = Edge>({ props, children }: { props: IBaseFlowProps<NodeType, EdgeType>; children: ReactNode; }) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=PropsStore.d.ts.map