16 lines
510 B
TypeScript
16 lines
510 B
TypeScript
import React from 'react';
|
|
import 'antd/lib/input-number/style';
|
|
export type FieldDigitProps = {
|
|
text: number;
|
|
placeholder?: string;
|
|
};
|
|
/**
|
|
* 格式化秒
|
|
*
|
|
* @param result
|
|
* @returns {string}
|
|
*/
|
|
export declare function formatSecond(result: number): string;
|
|
declare const _default: React.ForwardRefExoticComponent<import("@ant-design/pro-provider").BaseProFieldFC & import("@ant-design/pro-provider").ProRenderFieldPropsType & FieldDigitProps & React.RefAttributes<any>>;
|
|
export default _default;
|