UNPKG

rc-virtual-keyboard

Version:
32 lines (31 loc) 892 B
import React, { CSSProperties, ReactNode } from 'react'; import './style.css'; /** * * * * @param param0 * @returns * * @description */ declare const DragBlock: ({ init, resizeOverRight, autoKeepRightDelay, autoKeepRight, delay, zIndex, children, style, positionMode, onClick, }: { init?: { width: string; height: string; } | undefined; resizeOverRight?: boolean | undefined; /** 多长时间没有操作之后靠右 */ autoKeepRightDelay?: number | undefined; /** 是否自动靠右 */ autoKeepRight?: boolean | undefined; /** click延迟 */ delay?: number | undefined; onClick?: (() => void) | undefined; /** 层级 */ zIndex?: string | number | undefined; children?: ReactNode; style?: React.CSSProperties | undefined; positionMode?: string | undefined; }) => React.JSX.Element; export default DragBlock;