UNPKG

@rxflow/base

Version:

BaseFlow - 核心 Flow 组件库

13 lines 563 B
/** * @author: yanxianliang * @date: 2025-10-16 16:12 * @modified:2025/10/16 16:12 by yanxianliang * @desc: * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import { StoreApi } from "zustand/vanilla"; import { IBaseFlowProps, ExtractState } from "../../types"; export declare function usePropsSelector<GraphProps = IBaseFlowProps>(): GraphProps; export declare function usePropsSelector<GraphProps = IBaseFlowProps, U = unknown>(selector: (state: ExtractState<StoreApi<GraphProps>>) => U): U; //# sourceMappingURL=usePropsSelector.d.ts.map