UNPKG

@progress/kendo-react-excel-export

Version:
15 lines (14 loc) 457 B
import * as React from 'react'; import { ExcelExportColumnProps } from '../ExcelExportColumn'; /** * Represents the props that will be passed to the ExcelExportFooter component when the template is rendered. */ export interface ExcelExportFooterProps { column: ExcelExportColumnProps; columnIndex: number; } /** * Represents the footer of column. */ export default class ExcelExportFooter extends React.PureComponent<ExcelExportFooterProps> { }