@progress/kendo-react-excel-export
Version:
KendoReact Excel Export package
15 lines (14 loc) • 457 B
TypeScript
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> {
}