15 lines
582 B
TypeScript
15 lines
582 B
TypeScript
import type { ReactNode } from 'react';
|
|
import React from 'react';
|
|
import 'antd/lib/input-number/style';
|
|
export type PercentPropInt = {
|
|
prefix?: ReactNode;
|
|
suffix?: ReactNode;
|
|
text?: number | string;
|
|
precision?: number;
|
|
showColor?: boolean;
|
|
showSymbol?: boolean | ((value: any) => boolean);
|
|
placeholder?: string;
|
|
};
|
|
declare const _default: React.ForwardRefExoticComponent<import("@ant-design/pro-provider").BaseProFieldFC & import("@ant-design/pro-provider").ProRenderFieldPropsType & PercentPropInt & React.RefAttributes<any>>;
|
|
export default _default;
|