UNPKG

@rxflow/base

Version:

BaseFlow - 核心 Flow 组件库

11 lines 491 B
/** * @author: yanxianliang * @date: 2025-07-26 08:34 * @modified:2025/7/26 08:34 by yanxianliang * @desc: 获取设置状态的函数 * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import { BaseStateType } from "../.."; export declare function useSetState<Store extends BaseStateType = BaseStateType>(): (partial: Store | Partial<Store> | ((state: Store) => Store | Partial<Store>), replace?: boolean | undefined) => void; //# sourceMappingURL=useSetState.d.ts.map