13 lines
549 B
TypeScript
13 lines
549 B
TypeScript
import React from 'react';
|
|
import 'antd/lib/input-number/style';
|
|
export type Value = string | number | undefined | null;
|
|
export type ValuePair = Value[];
|
|
export type FieldDigitRangeProps = {
|
|
text: ValuePair;
|
|
placeholder?: string | string[];
|
|
separator?: string;
|
|
separatorWidth?: number;
|
|
};
|
|
declare const _default: React.ForwardRefExoticComponent<import("@ant-design/pro-provider").BaseProFieldFC & import("@ant-design/pro-provider").ProRenderFieldPropsType & FieldDigitRangeProps & React.RefAttributes<any>>;
|
|
export default _default;
|