1 | import * as React from 'react';
|
2 | import type { FlattenData } from '../hooks/useFlattenRecords';
|
3 | export interface BodyLineProps<RecordType = any> {
|
4 | data: FlattenData<RecordType>;
|
5 | index: number;
|
6 | className?: string;
|
7 | style?: React.CSSProperties;
|
8 | rowKey: React.Key;
|
9 |
|
10 | extra?: boolean;
|
11 | getHeight?: (rowSpan: number) => number;
|
12 | }
|
13 | declare const ResponseBodyLine: React.ForwardRefExoticComponent<BodyLineProps<any> & React.RefAttributes<HTMLDivElement>>;
|
14 | export default ResponseBodyLine;
|