UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

20 lines (19 loc) 553 B
import { IDetailsItemProps } from './DetailsRow.types'; import { IColumn } from './DetailsList.types'; import { ISelection, SelectionMode } from '../../utilities/selection/index'; export interface IDetailsFooterBaseProps extends IDetailsItemProps { } export interface IDetailsFooterProps extends IDetailsFooterBaseProps { /** * Column metadata */ columns: IColumn[]; /** * Selection from utilities */ selection: ISelection; /** * Selection mode */ selectionMode: SelectionMode; }