@chamn/engine
Version:
12 lines (11 loc) • 469 B
TypeScript
import { TActionLogicItem } from '@chamn/model';
import { CSetterProps } from '../type';
export type TActionFlowSetterCore = CSetterProps<{
value?: TActionLogicItem;
children?: React.ReactNode;
}>;
export declare const ActionFlowSetterCore: (props: TActionFlowSetterCore) => import("react/jsx-runtime").JSX.Element;
export declare const ActionFlowSetter: {
(props: TActionFlowSetterCore): import("react/jsx-runtime").JSX.Element;
setterName: string;
};