UNPKG

@etsoo/smarterp-core

Version:

TypeScript APIs for SmartERP Core

22 lines (21 loc) 588 B
import { ComboBoxProps } from "@etsoo/materialui"; import { DataTypes, ListType } from "@etsoo/shared"; /** * Product base units component props */ export type ProductBaseUnitsProps = DataTypes.Optional<Omit<ComboBoxProps<ListType>, "options">, "name" | "label"> & { /** * Is joined */ isJoined?: boolean; /** * Custom options */ options?: string[]; }; /** * Product base units component * @param props Props * @returns Component */ export declare function ProductBaseUnits(props: ProductBaseUnitsProps): import("react/jsx-runtime").JSX.Element;