choerodon-ui
Version:
An enterprise-class UI design language and React-based implementation
17 lines (16 loc) • 567 B
TypeScript
import { PureComponent, ReactNode } from 'react';
import { TableContextValue } from './TableContext';
export interface ProfilerProps {
children?: ReactNode;
}
export default class Profiler extends PureComponent<ProfilerProps> {
static displayName: string;
static get contextType(): import("react").Context<TableContextValue>;
context: TableContextValue;
constructor(props: any, context: any);
componentWillUpdate(): void;
componentDidMount(): void;
componentDidUpdate(): void;
handlePerformance(): void;
render(): ReactNode;
}