9 lines
333 B
TypeScript
9 lines
333 B
TypeScript
import * as React from 'react';
|
|
export interface MeasureCellProps {
|
|
columnKey: React.Key;
|
|
onColumnResize: (key: React.Key, width: number) => void;
|
|
prefixCls: string;
|
|
title?: React.ReactNode;
|
|
}
|
|
export default function MeasureCell({ columnKey, onColumnResize, prefixCls, title, }: MeasureCellProps): React.JSX.Element;
|