frc-ui
Version:
React Web UI
24 lines (23 loc) • 794 B
TypeScript
/// <reference types="lodash" />
import React from 'react';
import { ContentProps, ContentState } from '../interfaces';
declare class Content extends React.PureComponent<ContentProps, ContentState> {
body?: HTMLDivElement;
total: number;
pageSize: number;
socketMessage: any;
auto: boolean;
startDate: string;
constructor(props: ContentProps);
chatMessageCurrent: any[];
componentDidMount(): void;
componentWillReceiveProps(nextProps: ContentProps): void;
componentDidUpdate(): void;
setChatMessage: import("lodash").DebouncedFuncLeading<(tmp: any) => void>;
load: () => void;
scroll: () => void;
saveRef: (name: string) => (ele: any) => void;
renderBody: () => JSX.Element[];
render(): JSX.Element;
}
export default Content;