@itwin/quantity-formatting-react
Version:
React components and utilities for quantity formatting
17 lines • 515 B
TypeScript
/** @packageDocumentation
* @module QuantityFormat
*/
/** Properties of [[DecimalPrecisionSelector]] component.
* @internal
*/
export interface DecimalPrecisionSelectorProps {
precision: number;
onChange: (value: number) => void;
id?: string;
}
/** Component use to set Decimal Precision
* the unit label.
* @internal
*/
export declare function DecimalPrecisionSelector(props: DecimalPrecisionSelectorProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=DecimalPrecision.d.ts.map