jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/less/NumberKeyboard/props.d.ts

69 lines
1.2 KiB
TypeScript
Raw Normal View History

2024-11-10 07:01:22 +00:00
import { IBaseProps } from '../_base';
export interface INumberKeyboardProps extends IBaseProps {
/**
* @description
* @default ''
*/
className?: string;
/**
* @description
* @default false
*/
closeable?: boolean;
/**
* @description
* @default true
*/
point?: boolean;
/**
* @description
* @default ''
*/
confirmText?: string;
/**
* @description
* @default true
*/
vibrate?: boolean;
/**
* @description
* @default false
*/
visible?: boolean;
/**
* @description
* @default ''
*/
value?: string;
/**
* @description
* @default true
*/
safeArea?: boolean;
/**
* @description
* @default fasle
*/
random?: boolean;
/**
* @description
* @default false
*/
confirmDisabled?: boolean;
/**
* @description
*/
onChange?: (val: string) => void;
/**
* @description
*/
onConfirm?: () => void;
/**
* @description
*/
onClose?: () => void;
}
export declare const NumberKeyboardDefaultProps: Partial<INumberKeyboardProps>;