Cell.d.ts 391 B

1234567891011
  1. import * as React from 'react';
  2. import type { AlignType } from '../interface';
  3. export interface SummaryCellProps {
  4. className?: string;
  5. children?: React.ReactNode;
  6. index: number;
  7. colSpan?: number;
  8. rowSpan?: number;
  9. align?: AlignType;
  10. }
  11. export default function SummaryCell({ className, index, children, colSpan, rowSpan, align, }: SummaryCellProps): React.JSX.Element;