@visactor/react-vtable
Version:
The react version of VTable
11 lines (10 loc) • 378 B
TypeScript
import type { BaseComponentProps } from '../base-component';
export type TooltipProps = {
renderMode?: 'html';
isShowOverflowTextTooltip?: boolean;
confine?: boolean;
} & BaseComponentProps;
export declare const Tooltip: {
(props: TooltipProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};