UNPKG

467 BTypeScriptView Raw
1import * as React from 'react';
2export interface ILazyRenderBoxPropTypes {
3 className?: string;
4 visible?: boolean;
5 hiddenClassName?: string;
6 role?: string;
7 style?: {};
8 forceRender?: boolean;
9 onMouseDown?: React.MouseEventHandler<HTMLDivElement>;
10}
11export default class LazyRenderBox extends React.Component<ILazyRenderBoxPropTypes, any> {
12 shouldComponentUpdate(nextProps: ILazyRenderBoxPropTypes): boolean;
13 render(): JSX.Element;
14}