@etsoo/smarterp-core
Version:
TypeScript APIs for SmartERP Core
17 lines (16 loc) • 610 B
TypeScript
import { ListType } from "@etsoo/shared";
import { ButtonPopupRadioProps } from "@etsoo/materialui";
import { CoreApiService } from "../../dto/org/CoreApiService";
export type ButtonApiServicesProps = Omit<ButtonPopupRadioProps<ListType>, "labelField" | "loadData" | "value" | "onValueChange"> & {
/**
* Value
* 值
*/
value?: CoreApiService;
/**
* Value change handler
* @param value New value
*/
onValueChange: (value: CoreApiService) => void;
};
export declare function ButtonApiServices(props: ButtonApiServicesProps): import("react/jsx-runtime").JSX.Element;